diff options
-rw-r--r-- | etc/root/dot.cshrc | 3 | ||||
-rw-r--r-- | etc/root/dot.login | 6 | ||||
-rw-r--r-- | etc/root/dot.profile | 7 |
3 files changed, 12 insertions, 4 deletions
diff --git a/etc/root/dot.cshrc b/etc/root/dot.cshrc index 29409f2..5baf640 100644 --- a/etc/root/dot.cshrc +++ b/etc/root/dot.cshrc @@ -16,4 +16,7 @@ if ($?prompt) then set history = 100 set savehist = 100 set mail = (/var/mail/$USER) + + # make mail(1) happy: + setenv crt 24 endif diff --git a/etc/root/dot.login b/etc/root/dot.login index a561ef0..7b89b0f 100644 --- a/etc/root/dot.login +++ b/etc/root/dot.login @@ -5,9 +5,9 @@ set path = (/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/bin /usr/X11R6/b 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" +#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 diff --git a/etc/root/dot.profile b/etc/root/dot.profile index b847b06..b961fd2 100644 --- a/etc/root/dot.profile +++ b/etc/root/dot.profile @@ -1,4 +1,4 @@ -# $Id: dot.profile,v 1.13 1997/03/06 22:24:04 joerg Exp $ +# $Id: dot.profile,v 1.14 1997/04/03 21:42:30 brian Exp $ # PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin export PATH @@ -6,3 +6,8 @@ HOME=/root export HOME TERM=${TERM:-cons25} export TERM +PAGER=more +export PAGER +# make mail(1) happy: +crt=24 +export crt |