/ Published in: Bash
vi and other editors leave behind tilde files. Since tilde is special, you must take special measures to use it with rm.
Expand |
Embed | Plain Text
find . -name "*~" -exec rm {} \;
You need to login to post a comment.
