Skip to content

Instantly share code, notes, and snippets.

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 rana01645/7d5efefad3ba5fdbb3100d1d1966fe0b to your computer and use it in GitHub Desktop.
Save rana01645/7d5efefad3ba5fdbb3100d1d1966fe0b to your computer and use it in GitHub Desktop.
delete 7 days older file from speicific folder linux
sudo find /home/forge/default/user/ -mindepth 1 -type f -mtime +7 | xargs rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment