Skip to content

Instantly share code, notes, and snippets.

@caio-nas
Last active December 20, 2015 04:59
Show Gist options
  • Save caio-nas/6075129 to your computer and use it in GitHub Desktop.
Save caio-nas/6075129 to your computer and use it in GitHub Desktop.
Interact with all backup files at a directory
find . -name "*~" | while read x ; do mv $x ../$x ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment