source: lab/trunk/TipAndDoc/.bash_profile @ 110

Last change on this file since 110 was 110, checked in by mitty, 13 years ago
File size: 329 bytes
Line 
1# add /usr/local/sbin, /usr/sbin, /sbin to $PATH
2echo $PATH | grep /usr/local/sbin 1> /dev/null 2> /dev/null
3if [ ! $? = 0 ]; then
4    PATH=/usr/local/sbin:/usr/sbin:/sbin:$PATH
5fi
6
7
8# set PATH so it includes user's private bin if it exists
9if [ -d "$HOME/.bin" ] ; then
10    PATH="$HOME/.bin:$PATH"
11fi
12
13/usr/bin/screen -d -RR -U
Note: See TracBrowser for help on using the repository browser.