Return to Snippet

Revision: 1667
at November 6, 2006 04:30 by micmath


Updated Code
find . -name "*~" -exec rm {} \;

Revision: 1666
at November 6, 2006 04:26 by micmath


Initial Code
find . -name ".*~" -exec rm {} \;

Initial URL


Initial Description
vi and other editors leave behind tilde files. Since tilde is special, you must take special measures to use it with rm.

Initial Title
Remove Temporary Files

Initial Tags


Initial Language
Bash