########################################################################### # .profile # created 9/14/98 - rrenner # last updated 9/25/02 - rrenner # ONLY used for BOURNE and KORN shells # all # prefaced lines are comments only # use # to comment out unwanted lines # or uncomment where indicated functionality is desired # add options of your own, if desired, using proper syntax # be sure to UNCOMMENT the two .kshrc related lines near the bottom # of this file, if you want to use a .kshrc file # remember to source (interpret) the .profile after modifying, to test it: # (at command line type: . .profile) ########################################################################### # turns messaging off so other users can't interrupt your work session mesg n # set file creation mask (077 to protect against group&world access) umask 077 # re-assign PATH by adding to existing $PATH, separated by colons PATH=$PATH:.:./bin:$HOME/bin:/user/projects/ai/nnes/bin/:/opt/openssh/libexec export PATH # set prompt to host and Present Working Directory (PWD) PS1='$HOSTNAME:$PWD>' export PS1 # set-up environment variables EDITOR=emacs export EDITOR # notify receipt of new mail - you MUST replace with yours MAIL=/var/mail/renner # Source the .kshrc (if you have one) for each shell session # (for example: to interpret alias file or aliases within .kshrc ) # you use this feature, include a .kshrc file in your home directory # and uncomment the two lines below. Test by sourcing your .profile before logout. ENV=~/.kshrc export ENV # debugging echo finished running user customized .profile