Remove Temporary Files


/ Published in: Bash
Save to your folder(s)

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


Copy this code and paste it in your HTML
  1. find . -name "*~" -exec rm {} \;

Report this snippet


Comments


You need to login to view comments.