blob: ce14fb75fb46d99d084f4f68d421ec9531d9c4d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# csh .login file
#
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 righteous umask
umask 22
stty crt erase ^h
[ -x /usr/games/fortune ] && /usr/games/fortune
|