Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-4]: src/usr.sbin/user Pull up revision 1.1 (new) (requested by ...



details:   https://anonhg.NetBSD.org/src/rev/08afbabda1cc
branches:  netbsd-1-4
changeset: 470120:08afbabda1cc
user:      he <he%NetBSD.org@localhost>
date:      Thu Jan 20 23:59:57 2000 +0000

description:
Pull up revision 1.1 (new) (requested by agc):
  Add tools to manage users and groups.

diffstat:

 usr.sbin/user/dot.cshrc   |  50 +++++++++++++++++++++++++++++++++++++++++++++++
 usr.sbin/user/dot.login   |   1 +
 usr.sbin/user/dot.profile |   8 +++++++
 3 files changed, 59 insertions(+), 0 deletions(-)

diffs (71 lines):

diff -r 664061b32671 -r 08afbabda1cc usr.sbin/user/dot.cshrc
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/usr.sbin/user/dot.cshrc   Thu Jan 20 23:59:57 2000 +0000
@@ -0,0 +1,50 @@
+alias mail Mail
+set ignoreeof filec
+set history=1000
+set path=(/usr/pkg/bin /usr/pkg/sbin /usr/pkg/pthreads/bin /usr/pkg/postgres/bin /sbin /usr/sbin /bin /usr/bin /usr/X11R6/bin /usr/local/scripts /usr/local/bin /usr/local/sbin)
+
+# directory stuff: cdpath/cd/back
+set cdpath=(/sys /usr/src/{bin,sbin,usr.{bin,sbin},pgrm,lib,libexec,share,contrib,local,devel,games,old,})
+
+setenv BLOCKSIZE 1k
+
+setenv CVS_RSH ssh
+setenv RSYNC_RSH       ssh
+setenv XWINHOME /usr/X11R6
+setenv XAUTHORITY $HOME/.Xauthority
+setenv EDITOR /usr/bin/vi
+setenv VISUAL /usr/bin/vi
+
+setenv CLASSPATH .:/usr/pkg/share/kaffe/classes.zip
+setenv KAFFEHOME /usr/pkg/share/kaffe
+setenv LD_LIBRARY_PATH /usr/pkg/lib:/usr/lib:/usr/X11R6/lib:/usr/local/lib
+
+setenv XNLSPATH /usr/local/netscape/nls
+
+setenv TMPDIR  /tmp
+
+# package stuff
+setenv DISTDIR /usr/pkgsrc/distfiles
+
+setenv MANPATH "/usr/pkg/man:/usr/share/man:/usr/local/man:/usr/X11R6/man"
+
+set id = `id`
+set user = `expr "//$id" : '[^(]*(\([^)]*\)'`
+
+set HOST = `hostname -s`
+
+alias setprompt        'set prompt = "$user@$HOST":"$cwd(\\!)% "'
+alias cd       'cd \!* ; setprompt'
+alias pushd    'pushd \!* ; setprompt'
+alias popd     'popd \!* ; setprompt'
+alias h                history
+alias j                jobs -l
+alias L                'ls -alL \!*'
+alias l                'ls -al \!*'
+alias li       'ls -ail \!*'
+
+alias  tset    'set noglob histchars=""; eval `\tset -s \!*`; unset noglob histchars'
+
+if ($?prompt) then
+       setprompt
+endif
diff -r 664061b32671 -r 08afbabda1cc usr.sbin/user/dot.login
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/usr.sbin/user/dot.login   Thu Jan 20 23:59:57 2000 +0000
@@ -0,0 +1,1 @@
+tset -Q \?$TERM
diff -r 664061b32671 -r 08afbabda1cc usr.sbin/user/dot.profile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/usr.sbin/user/dot.profile Thu Jan 20 23:59:57 2000 +0000
@@ -0,0 +1,8 @@
+PATH=/sbin:/usr/sbin:/bin:/usr/bin:.
+export PATH
+HOME=/root
+export HOME
+
+if [ -x /usr/bin/tset ]; then
+       eval `/usr/bin/tset -sQ \?$TERM`
+fi



Home | Main Index | Thread Index | Old Index