mirror of
https://github.com/dirtbags/moth.git
synced 2025-01-06 12:00:34 -07:00
6 lines
118 B
Bash
6 lines
118 B
Bash
PATH=/bin
|
|
[ $USER = root ] && PATH=/sbin:/bin
|
|
for i in /opt/*/bin; do
|
|
[ -d $i ] && PATH=$i:$PATH
|
|
done
|
|
export PATH
|