NetBSD/etc/root/dot.profile
mycroft c43c81eec7 (Ab?)use some sh(1) features:
* Put the aliases in a separate file, referenced by $ENV, so that they're
  present in subshells.
* Do the same to make `set -o emacs' happen automatically in interactive
  shells.  (Yay, line editing by default!)
* Use `export FOO=bar' syntax, as it's shorter and other sh(1)-like shells
  all support it these days.
1999-11-05 11:30:13 +00:00

19 lines
404 B
Plaintext

# $NetBSD: dot.profile,v 1.11 1999/11/05 11:30:13 mycroft Exp $
export PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/pkg/sbin:/usr/pkg/bin
export PATH=${PATH}:/usr/X11R6/bin:/usr/local/sbin:/usr/local/bin
export BLOCKSIZE=1k
export HOME=/root
if [ -x /usr/bin/tset ]; then
eval `/usr/bin/tset -sQ \?$TERM`
fi
umask 022
#ulimit -c 0
export ENV=$HOME/.shrc
echo "Don't login as root, use the su command."