dot.profile revision 1.9
1# $NetBSD: dot.profile,v 1.9 1999/03/30 02:36:05 hubertf Exp $ 2 3PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/pkg/sbin:/usr/pkg/bin 4PATH=${PATH}:/usr/X11R6/bin:/usr/local/sbin:/usr/local/bin 5export PATH 6 7BLOCKSIZE=1k 8export BLOCKSIZE 9 10HOME=/root 11export HOME 12 13if [ -x /usr/bin/tset ]; then 14 eval `/usr/bin/tset -sQ \?$TERM` 15fi 16 17umask 022 18 19hup(){ kill -HUP `cat /var/run/$1.pid` ; } 20ll(){ ls -l $* ; } 21x(){ exit ; } 22 23if [ `/usr/bin/id -u` = 0 ]; then 24 PS1="`hostname -s`# " 25else 26 PS1="`hostname -s`$ " 27fi 28 29echo "Don't login as root, use the su command." 30