1
0
Fork 0
mirror of https://github.com/dirtbags/moth.git synced 2025-01-06 12:00:34 -07:00
moth/sh4pwn/skeleton/etc/profile
2011-10-11 15:38:34 -06:00

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