Skip to content

Instantly share code, notes, and snippets.

@nl5887
Created January 29, 2015 10:11
Show Gist options
  • Select an option

  • Save nl5887/5d213592d7cdbe947fc2 to your computer and use it in GitHub Desktop.

Select an option

Save nl5887/5d213592d7cdbe947fc2 to your computer and use it in GitHub Desktop.
Remove all bak files 7 days or older.
#!/bin/sh
find /mnt/ -name '*.bak' -mtime +7 | xargs rm -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment