mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-14 11:14:58 +02:00
16 lines
161 B
Bash
16 lines
161 B
Bash
|
# .bash_profile
|
||
|
|
||
|
export PATH=\
|
||
|
/bin:\
|
||
|
/sbin:\
|
||
|
/usr/bin:\
|
||
|
/usr/sbin:\
|
||
|
/usr/bin/X11:\
|
||
|
/usr/local/bin
|
||
|
|
||
|
umask 022
|
||
|
|
||
|
if [ -f ~/.bashrc ]; then
|
||
|
source ~/.bashrc
|
||
|
fi
|