Skip to content

Instantly share code, notes, and snippets.

@aparnachaudhary
Created April 23, 2012 06:43
Show Gist options
  • Save aparnachaudhary/2469161 to your computer and use it in GitHub Desktop.
Save aparnachaudhary/2469161 to your computer and use it in GitHub Desktop.
Remove tmp files
find /tmp -type f -name "*.tmp" -amin +30 -exec rm -f {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment