tools/llvm: Do not build with symbols
[minix3.git] / etc / ast / .profile
blob5ac0d8febae2c5360950dab9420f168d99638605
1 # Login shell profile.
3 umask 022
5 # Favourite editor and pager, search path for binaries, etc.
6 export EDITOR=vi
7 export PAGER=less
9 # Let cd display the current directory on the status line.
10 if [ -t 0 -a -f /usr/bin/tget ] && tget -flag hs
11 then
12 case $- in *i*)
13         hostname=$(expr $(uname -n) : '\([^.]*\)')
14         eval "cd()
15         {
16                 chdir \"\$@\" &&
17                 echo -n '$(tget -str ts \
18                                 "$USER@$hostname:'\"\`pwd\`\"'" \
19                                 -str fs)'
20         }"
21         unset hostname
22         cd .
23         ;;
24 esac
27 # Check terminal type.
28 case $TERM in
29 dialup|unknown|network)
30         echo -n "Terminal type? ($TERM) "; read term
31         TERM="${term:-$TERM}"
32         unset term
33 esac