summaryrefslogtreecommitdiffstats
path: root/share/skel
diff options
context:
space:
mode:
authorrgrimes <rgrimes@FreeBSD.org>1994-05-30 19:09:18 +0000
committerrgrimes <rgrimes@FreeBSD.org>1994-05-30 19:09:18 +0000
commitb0d61785cae024b1f44119446a940ee14c9ac959 (patch)
tree5a495a583b002ae9e57f09848ae697160708c220 /share/skel
parentd43599f73ba5858e573c7ad8b284f6a0808c5c93 (diff)
downloadFreeBSD-src-b0d61785cae024b1f44119446a940ee14c9ac959.zip
FreeBSD-src-b0d61785cae024b1f44119446a940ee14c9ac959.tar.gz
BSD 4.4 Lite Share Sources
Diffstat (limited to 'share/skel')
-rw-r--r--share/skel/Makefile12
-rw-r--r--share/skel/dot.cshrc25
-rw-r--r--share/skel/dot.login9
-rw-r--r--share/skel/dot.mailrc6
-rw-r--r--share/skel/dot.profile11
-rw-r--r--share/skel/dot.rhosts3
6 files changed, 66 insertions, 0 deletions
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 <bsd.prog.mk>
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
OpenPOWER on IntegriCloud