From b0d61785cae024b1f44119446a940ee14c9ac959 Mon Sep 17 00:00:00 2001 From: rgrimes Date: Mon, 30 May 1994 19:09:18 +0000 Subject: BSD 4.4 Lite Share Sources --- share/skel/Makefile | 12 ++++++++++++ share/skel/dot.cshrc | 25 +++++++++++++++++++++++++ share/skel/dot.login | 9 +++++++++ share/skel/dot.mailrc | 6 ++++++ share/skel/dot.profile | 11 +++++++++++ share/skel/dot.rhosts | 3 +++ 6 files changed, 66 insertions(+) create mode 100644 share/skel/Makefile create mode 100644 share/skel/dot.cshrc create mode 100644 share/skel/dot.login create mode 100644 share/skel/dot.mailrc create mode 100644 share/skel/dot.profile create mode 100644 share/skel/dot.rhosts (limited to 'share/skel') diff --git a/share/skel/Makefile b/share/skel/Makefile new file mode 100644 index 0000000..e3996e2 --- /dev/null +++ b/share/skel/Makefile @@ -0,0 +1,12 @@ +# @(#)Makefile 8.1 (Berkeley) 6/8/93 + +FILES= dot.cshrc dot.login dot.mailrc dot.profile dot.rhosts +NOOBJ= noobj + +all clean cleandir depend lint tags: + +install: + install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \ + ${DESTDIR}${BINDIR}/skel + +.include diff --git a/share/skel/dot.cshrc b/share/skel/dot.cshrc new file mode 100644 index 0000000..6f43db6 --- /dev/null +++ b/share/skel/dot.cshrc @@ -0,0 +1,25 @@ +#csh .cshrc file + +alias h history 25 +alias j jobs -l +alias la ls -a +alias lf ls -FA +alias ll ls -lA +alias su su -m + +setenv EDITOR vi +setenv EXINIT 'set autoindent' +setenv PAGER more + +set path = (~/bin /bin /usr/{bin,X11/bin,contrib/bin,games,old/bin} /usr/local/bin) + +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}: {\!} " + umask 2 +endif diff --git a/share/skel/dot.login b/share/skel/dot.login new file mode 100644 index 0000000..eb10795 --- /dev/null +++ b/share/skel/dot.login @@ -0,0 +1,9 @@ +#csh .login file + +setenv SHELL /bin/csh +set noglob +eval `tset -s -m 'network:?xterm'` +unset noglob +stty status '^T' crt -tostop + +/usr/games/fortune diff --git a/share/skel/dot.mailrc b/share/skel/dot.mailrc new file mode 100644 index 0000000..6606b4f --- /dev/null +++ b/share/skel/dot.mailrc @@ -0,0 +1,6 @@ +set append ask autoprint +set indentprefix="> " +set PAGER=more +set EDITOR=vi +set VISUAL=vi +retain bcc cc date from subject to diff --git a/share/skel/dot.profile b/share/skel/dot.profile new file mode 100644 index 0000000..f0fefc9 --- /dev/null +++ b/share/skel/dot.profile @@ -0,0 +1,11 @@ +PATH=$HOME/bin:/bin:/usr/bin:/usr/X11/bin:/usr/contrib/bin:/usr/games/bin:/usr/old/bin:/usr/local/bin +export PATH + +EDITOR=vi +export EDITOR +EXINIT='set autoindent' +export EXINIT +PAGER=more +export PAGER + +umask 2 diff --git a/share/skel/dot.rhosts b/share/skel/dot.rhosts new file mode 100644 index 0000000..21de984 --- /dev/null +++ b/share/skel/dot.rhosts @@ -0,0 +1,3 @@ +# This file should NOT be group or other readable. +OtherMachine +OtherMachine myFriend -- cgit v1.1