diff options
| author | Robert Watson <rwatson@FreeBSD.org> | 2000-07-15 03:18:07 +0000 |
|---|---|---|
| committer | Robert Watson <rwatson@FreeBSD.org> | 2000-07-15 03:18:07 +0000 |
| commit | 12013ebd2c74ad41eea903dc683e5c1834e238c4 (patch) | |
| tree | 39bda947848ab00c3eba29f10de21b44d5d0237c | |
| parent | 551d294924d4eeadcc9a49552cfca51183d93e95 (diff) | |
Notes
| -rw-r--r-- | share/skel/dot.cshrc | 8 | ||||
| -rw-r--r-- | share/skel/dot.login | 17 |
2 files changed, 9 insertions, 16 deletions
diff --git a/share/skel/dot.cshrc b/share/skel/dot.cshrc index 45f376775af0..490a69475942 100644 --- a/share/skel/dot.cshrc +++ b/share/skel/dot.cshrc @@ -1,7 +1,6 @@ # $FreeBSD$ # -# .cshrc - csh resource script, read at beginning -# of execution by each shell +# .cshrc - csh resource script, read at beginning of execution by each shell # # see also csh(1), environ(7). # @@ -12,6 +11,11 @@ alias la ls -a alias lf ls -FA alias ll ls -lA +# A rightous umask +umask 22 + +set path = (/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/sbin /usr/local/bin /usr/X11R6/bin $HOME/bin) + setenv EDITOR vi setenv PAGER more setenv BLOCKSIZE K diff --git a/share/skel/dot.login b/share/skel/dot.login index d59a727ccc97..3032ef97c762 100644 --- a/share/skel/dot.login +++ b/share/skel/dot.login @@ -1,20 +1,9 @@ # $FreeBSD$ # -# .login - csh login script, read by login shell, -# after `.cshrc' at login. +# .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" - -# A rightous umask -umask 22 - -[ -x /usr/games/fortune ] && /usr/games/fortune -s +# Uncomment to display a random cookie each login: +# [ -x /usr/games/fortune ] && /usr/games/fortune -s |
