Skip to content

Instantly share code, notes, and snippets.

@abramovk
Created December 2, 2023 11:59
Show Gist options
  • Save abramovk/decb36b17684cfe2964a8918a2ecd4a5 to your computer and use it in GitHub Desktop.
Save abramovk/decb36b17684cfe2964a8918a2ecd4a5 to your computer and use it in GitHub Desktop.
Delete files *.txt older than 6 days
#!/bin/sh
find /data/*.txt -mtime +6 -type f -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment