alias mv 'mv -i'Another thing I find very useful is to have the target directory listed automatically when issuing a cd command. This can be done as well by adding the following line in your .cshrc file:
alias rm 'rm -i'
alias cp 'cp -i'
alias cd 'cd \!*;echo $cwd; ls -FC'For these changes to be effective, type source .cshrc or open a new terminal window.
[Editor's note: Please see this related conversation on aliases in another macosxhints' posting. Aliases can live in a number of locations; .tcsh is one of them, but the referenced article gives an alternate, (possibly better?) location for these types of files.]

