1130b656e5
This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
24 lines
569 B
Plaintext
24 lines
569 B
Plaintext
# $FreeBSD$
|
|
#
|
|
# .login - csh login script, read by login shell,
|
|
# after `.cshrc' at login.
|
|
#
|
|
# see also csh(1), environ(7).
|
|
#
|
|
|
|
set path = (/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/bin /usr/X11R6/bin $HOME/bin)
|
|
setenv MANPATH "/usr/share/man:/usr/X11R6/man:/usr/local/man"
|
|
|
|
# Interviews settings
|
|
setenv CPU "FREEBSD"
|
|
set path = ($path /usr/local/interviews/bin/$CPU)
|
|
setenv MANPATH "${MANPATH}:/usr/local/interviews/man"
|
|
|
|
# 8-bit locale (germany)
|
|
#setenv LANG de_DE.ISO_8859-1
|
|
|
|
# A rightous umask
|
|
umask 22
|
|
|
|
[ -x /usr/games/fortune ] && /usr/games/fortune
|