Skip to content

Instantly share code, notes, and snippets.

@caio-nas
Created July 24, 2013 22:21
Show Gist options
  • Save caio-nas/6075153 to your computer and use it in GitHub Desktop.
Save caio-nas/6075153 to your computer and use it in GitHub Desktop.
Lists all backup (~) files inside a directory
find . -name "*~" | while read x ; do echo $x ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment