home *** CD-ROM | disk | FTP | other *** search
- # Simple C-Shell configuration script
-
- #set the search path
-
- set path = ($path . bin /usr/bin /usr/local/bin /usr/local/X11R6.1/bin /$home)
-
- #define some aliases
-
- alias df '/bin/df -k '
- alias local 'cd /local'
- alias windows 'startx'
- alias copy 'cp'
- alias dir 'ls'
- alias move 'mv'
- alias delete 'rm'
- set history=25
- alias h history
-
-
- #change the shell prompt
- set host = `/bin/hostname`
- set thisuser = `/usr/bin/whoami`
- set prompt = "$host>$thisuser>\!>"
-