Skip to content

Instantly share code, notes, and snippets.

@devopsmariocom
Created November 2, 2012 09:52
Show Gist options
  • Save devopsmariocom/3999845 to your computer and use it in GitHub Desktop.
Save devopsmariocom/3999845 to your computer and use it in GitHub Desktop.
Daily Indexer Cleaner
#!/bin/sh
# Remove Index older than 8 hours
find /var/tmp/ -name "j-*" -mmin +500 -exec rm -r {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment