2005-04-22 15:56:32 +02:00
|
|
|
# Ash initialization.
|
|
|
|
|
|
|
|
test -z "$EDITOR" && { # Don't repeat in subshells.
|
|
|
|
|
|
|
|
umask 022
|
|
|
|
|
|
|
|
# Favourite editor and pager, search path for binaries, etc.
|
|
|
|
export EDITOR=vi
|
|
|
|
export PAGER=more
|
2005-11-14 19:40:36 +01:00
|
|
|
export PATH=$HOME/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin
|
2005-04-22 15:56:32 +02:00
|
|
|
|
|
|
|
} # End of no-repeat.
|
|
|
|
|
|
|
|
# Let cd display the current directory on the status line.
|
|
|
|
if [ "$-" : '.*i.*' -a -t 0 -a -f /usr/bin/tget ] && tget -flag hs
|
|
|
|
then
|
|
|
|
hostname=$(expr $(uname -n) : '\([^.]*\)')
|
|
|
|
eval "cd()
|
|
|
|
{
|
|
|
|
chdir \"\$@\" &&
|
|
|
|
echo -n '$(tget -str ts \
|
|
|
|
"$USER@$hostname:'\"\`pwd\`\"'" \
|
|
|
|
-str fs)'
|
|
|
|
}"
|
|
|
|
unset hostname
|
|
|
|
cd .
|
|
|
|
fi
|