I was trying to change a file name in the Mac OS X terminal the other day using the 'mv' command. Instead, I deleted the file by accidentally entering the 'rm' command.
$ rm my_file.py another_name_for_my_file.py
rm: another_name_for_my_file.py: No such file or directory
I know I should have been more careful before pressing the <Enter> key, and I do try, but sometimes my fingers just get confused with the 'rm' and 'mv' commands.
So, I would like to know the way to change the name of the 'rm' command to another, e.g., 'remove', to prevent further accidents, but can't find any directions on the web. (I am presuming this may be possible by editing a ~/.bashrc or ~/.profile file.)
Does a bypass exist? Or is there no way to change a terminal command?