Skip to content

Instantly share code, notes, and snippets.

@artursapek
Created January 5, 2013 02:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save artursapek/4459309 to your computer and use it in GitHub Desktop.
Save artursapek/4459309 to your computer and use it in GitHub Desktop.
Quickly remove all .sedbak backup files. RECURSIVE!
#!/bin/sh
# Remove all .sedbak files (sed backup files)
find . -name "*.sedbak" -print0 | xargs -0 rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment