/ 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
Copy this code and paste it in your HTML
find . -name "*~" -exec rm {} \;