Type cd (to go to your home directory) and then ls -al (to show all your files, even those whose names start with a dot).
Look at the contents of your .cshrc file with the command more .cshrc, looking especially for ``path'' and ``alias''.
Here are typical contents of the file .cshrc:
umask 077
setenv PRINTER richard2
setenv EDITOR vi
setenv PAGER more
setenv TEXHOME /usr/local/tex
set path=($path /usr/local/bin ${TEXHOME}/bin)
set history=40
alias dir '/bin/ls -alF \!* | more'
alias h 'history'
alias duu '/bin/du -k | sort -n | tail -20'
alias newton 'ssh newton.colorado.edu'
What they do:
umask 077   -- gives others (group and world) no permissions at all; only you can read the file
umask 022   -- gives others (group and world) read-only permission; others can read but not alter your stuff
umask 002   -- gives others in your group write-permission; you and your group can edit your files, but nobody else can
alias dir '/bin/ls -alF \!* | more'the typed ``dir'' command would be interpreted like this:
| dir |   | /bin/ls -alF | more |
| dir bin |   | /bin/ls -alF bin | more |
| dir subdir1 subdir2 |   | /bin/ls -alF subdir1 subdir2 | more |