Skip to content

Instantly share code, notes, and snippets.

@rosylilly
Last active January 2, 2022 04:11
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 rosylilly/b2cb046121e21520ec22ad6ae7fa449c to your computer and use it in GitHub Desktop.
Save rosylilly/b2cb046121e21520ec22ad6ae7fa449c to your computer and use it in GitHub Desktop.
Remove old download files(Full disk access to /usr/sbin/cron is required)
#!/bin/bash
set -ex
find $HOME/Downloads -mtime +3 ! -type d -delete
find $HOME/Downloads -type d -empty -delete
# with cron
# * * * * * bash $HOME/bin/download-clear
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment