Skip to content

Instantly share code, notes, and snippets.

@andreyshuster
Created March 7, 2016 08:05
Show Gist options
  • Save andreyshuster/4f1dd6cc0289746e95a8 to your computer and use it in GitHub Desktop.
Save andreyshuster/4f1dd6cc0289746e95a8 to your computer and use it in GitHub Desktop.
delete emacs temp files
find ./ -name '*~' -exec rm '{}' \; -print -or -name ".*~" -exec rm {} \; -print
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment