home *** CD-ROM | disk | FTP | other *** search
- #!/bin/csh
- #
- # misc. standard csh variables get set here
- #
- set history=25
- set autolist
- if ( $user == root ) then
- set prompt='# '
- else
- set prompt='% '
- endif
- set prompt2='? '
-
- #
- # special tcsh alias: a command that gets executed before every prompt
- # this makes sure the cursor is on
-
- #alias precmd 'echotc ti'
-
- #
- # atariST extension: use ^ instead of \ as an escape character,
- # so that \ can be used more conveniently in file names
- #
- #set escchar=^
-
- #
- # atariST extension: use \ in preference to / when completing names,
- # doing ls-F, etc. Set this variable only if you have set escchar to
- # something other than \
- #
- # set dosslashes
- #
-
- #
- # note: in PATH, use "/dev/c" in place of "c:". If you're using MiNT
- # and drive U:, you don't need to worry about this, since all your
- # paths can be absolute
- #
- set path=( . /bin /usr/local/bin /usr/bin /usr/ucb /gnu/bin /usr/games )
-
- set ignoreeof=1
- set notify=1
-
- #setenv PATH :/dev/d/bin:/dev/d/gnu/bin:/dev/e/mint/bin:/dev/i/mgr/bin
- rehash
-
- #
- # environment: this is for my setup, customize as you see fit
- #
-
- # Sometime, there are lots of places that one can find man pages.
- setenv MANPATH /usr/local/man:/usr/man
- setenv TEXINPUTS .:$HOME/bin/tex:$HOME/bin:/usr/lib/tex/macros
-
- # Where's the Gnu stuff at?
- setenv BISON_SIMPLE /usr/lib/bison.sim
- setenv BISON_HAIRY /usr/lib/bison.hai
-
- setenv GCCEXEC /gnu/gnuc/gcc-
- setenv GNULIB /usr/lib
- setenv GNUINC /usr/include
-
- setenv TMP /tmp
- setenv TEMP /tmp
- setenv TMPDIR /tmp
-
- setenv LSOPTS C
-
- setenv TERMCAP /etc/termcap
-
- setenv TZ GMT
- setenv UNIXMODE "/cub"
- setenv SHELL /bin/sh.ttp
-
- #
- # aliases:
- #
-
- #alias ls ls-F
- alias pwd echo \$cwd
- alias j jobs -l
- alias po popd
- alias pu pushd
- alias edit jove
- alias dir ls -aF
- alias shutdown kill -TERM 1
- alias bye logout
-