home *** CD-ROM | disk | FTP | other *** search
- # .shrc file --- this file will be read every time the shell cranks up
- # if it is in the $HOME directory
-
- # this is a sample, currently set up to do some Korn shell emulation
-
- PPID=$+ # set the Parent Process Id
-
- # source file name given by ENV environment variable
- # and only if $ENV is not this file.
-
- if [ "$ENV" != "" -a "$ENV" != "$HOME/.shrc" ]
- then
- . $ENV
- fi
-
- # put any useful shell functions here, or source a file with them in it.
-