source: lab.git/TipAndDoc/.bash_profile

Last change on this file was 5650e43, checked in by mitty <mitty@…>, 13 years ago

git-svn-id: https://lab.mitty.jp/svn/lab/trunk@110 7d2118f6-f56c-43e7-95a2-4bb3031d96e7

  • Property mode set to 100644
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.