__aeabi_ldivmod: fix sign logic
[minix.git] / etc / ast / .ashrc
blob5757405c231212180320db2289154a7edda0a9eb
1 # Ash initialization.
3 test -z "$EDITOR" && {  # Don't repeat in subshells.
5 umask 022
7 # Favourite editor and pager, search path for binaries, etc.
8 export EDITOR=vi
9 export PAGER=less
10 export PATH=$HOME/bin:/usr/local/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/pkg/bin:/usr/pkg/sbin:/usr/pkg/X11R6/bin
12 } # End of no-repeat.
14 # Let cd display the current directory on the status line.
15 if [ -t 0 -a -f /usr/bin/tget ] && tget -flag hs
16 then
17 case $- in *i*)
18         hostname=$(expr $(uname -n) : '\([^.]*\)')
19         eval "cd()
20         {
21                 chdir \"\$@\" &&
22                 echo -n '$(tget -str ts \
23                                 "$USER@$hostname:'\"\`pwd\`\"'" \
24                                 -str fs)'
25         }"
26         unset hostname
27         cd .
28         ;;
29 esac