mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-09 18:45:54 +02:00
12 lines
242 B
Bash
12 lines
242 B
Bash
# Make sure the basic paths are always available.
|
|
|
|
pathmunge /bin
|
|
pathmunge /usr/bin
|
|
pathmunge /usr/local/bin
|
|
|
|
for directory in $(find /opt/*/bin -maxdepth 1 -type d 2>/dev/null); do
|
|
pathmunge ${directory} after
|
|
done
|
|
|
|
unset directory
|