Just a simple script that looks at the Downloads folder (/Users/8ballsystem/Downloads) and removes everything older then 8 days. Signed-off-by: eightball <code@8ball.space>
2 lines
No EOL
95 B
Bash
2 lines
No EOL
95 B
Bash
#!/bin/bash
|
|
find /Users/8ballsystem/Downloads -mtime +8 -exec rm -rv {} \; | tee -a deleted.log |