diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
commit | d6583bb2a13f329cf0332ef2570eb8bb8fc0e39c (patch) | |
tree | ece253b876159b39c620e62b6c9b1174642e070e /share/skel |
initial import of NetBSD tree
Diffstat (limited to 'share/skel')
-rw-r--r-- | share/skel/Makefile | 13 | ||||
-rw-r--r-- | share/skel/dot.cshrc | 27 | ||||
-rw-r--r-- | share/skel/dot.login | 15 | ||||
-rw-r--r-- | share/skel/dot.mailrc | 2 | ||||
-rw-r--r-- | share/skel/dot.profile | 2 | ||||
-rw-r--r-- | share/skel/dot.rhosts | 2 |
6 files changed, 61 insertions, 0 deletions
diff --git a/share/skel/Makefile b/share/skel/Makefile new file mode 100644 index 00000000000..192db7e97ed --- /dev/null +++ b/share/skel/Makefile @@ -0,0 +1,13 @@ +# from: @(#)Makefile 5.3 (Berkeley) 6/8/90 +# $Id: Makefile,v 1.1 1995/10/18 08:44:47 deraadt Exp $ + +FILES= dot.cshrc dot.login dot.mailrc dot.profile dot.rhosts +NOOBJ= noobj + +all clean cleandir depend lint tags: + +realinstall: + install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \ + ${DESTDIR}${BINDIR}/skel + +.include <bsd.prog.mk> diff --git a/share/skel/dot.cshrc b/share/skel/dot.cshrc new file mode 100644 index 00000000000..d1e8a36ee1e --- /dev/null +++ b/share/skel/dot.cshrc @@ -0,0 +1,27 @@ +# .cshrc initialization + +alias df df -k +alias du du -k +alias f finger +alias h 'history -r | more' +alias j jobs -l +alias la ls -a +alias lf ls -FA +alias ll ls -lgsA +alias su su -m +alias tset 'set noglob histchars=""; eval `\tset -s \!*`; unset noglob histchars' +alias x exit +alias z suspend + +set path = (~/bin /bin /usr/{bin,new,games,local,old} .) + +if ($?prompt) then + # An interactive shell -- set some stuff up + set filec + set history = 1000 + set ignoreeof + set mail = (/var/mail/$USER) + set mch = `hostname -s` + set prompt = "$mch:q:$cwd:t {\!} " + umask 2 +endif diff --git a/share/skel/dot.login b/share/skel/dot.login new file mode 100644 index 00000000000..bdbc7506830 --- /dev/null +++ b/share/skel/dot.login @@ -0,0 +1,15 @@ +#csh login file + +if ( ! $?TERMCAP ) then + tset -Q '-mdialup:?vt100' $TERM +endif + +stty newcrt crterase + +set savehist=100 +set ignoreeof + +setenv EXINIT 'set ai sm noeb' +setenv HOSTALIASES $HOME/.hostaliases + +/usr/games/fortune diff --git a/share/skel/dot.mailrc b/share/skel/dot.mailrc new file mode 100644 index 00000000000..7c8a99b9050 --- /dev/null +++ b/share/skel/dot.mailrc @@ -0,0 +1,2 @@ +set ask +ignore message-id received date fcc status resent-date resent-message-id resent-from in-reply-to diff --git a/share/skel/dot.profile b/share/skel/dot.profile new file mode 100644 index 00000000000..95ed15cdc5b --- /dev/null +++ b/share/skel/dot.profile @@ -0,0 +1,2 @@ +PATH=/bin:/usr/bin:/usr/new:/usr/local:/usr/games:/usr/old:. +export PATH HOME TERM diff --git a/share/skel/dot.rhosts b/share/skel/dot.rhosts new file mode 100644 index 00000000000..2704975166b --- /dev/null +++ b/share/skel/dot.rhosts @@ -0,0 +1,2 @@ +OtherMachine +OtherMachine myFriend |