source: projects/rootfiles/trunk/.tcshrc @ 1127

Revision 1127, 435 bytes checked in by daisuke, 14 years ago (diff)

import rootfiles-20090501 from internal cvs repository

Line 
1# .tcshrc
2
3# Source local definitions
4setenv target ${HOME}/.vine/system/ime
5if ( -f $target ) then
6    foreach _line_ ("`/bin/cat $target`")
7        eval `echo $_line_ | /bin/sed -e 's|=C$|=en_US|g' -e 's|\([^#]*\)=\(.*\)|setenv \1 \2|'`
8    end
9    unset _line_
10endif
11unsetenv target
12
13# User specific aliases and functions
14
15alias rm 'rm -i'
16alias cp 'cp -i'
17alias mv 'mv -i'
18
19setenv PATH "/usr/sbin:/sbin:$PATH"
20
21set prompt='[%n@%m %c]# '
Note: See TracBrowser for help on using the repository browser.