Skip to content

Instantly share code, notes, and snippets.

@bl1nk
Created May 26, 2014 13:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bl1nk/24597861ad7e29bbc41c to your computer and use it in GitHub Desktop.
Save bl1nk/24597861ad7e29bbc41c to your computer and use it in GitHub Desktop.
Deletes all uploads (older than 24h) from my filesharing folder
#!/usr/bin/env sh
find /srv/http/io.kuchen.cdn/ -type f ! -name index.html -mmin +1440 -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment