Added Download.sh

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>
This commit is contained in:
Nate S. 2025-08-17 17:16:51 +00:00
parent 1a27ec3b0b
commit ee397d63db

2
download.sh Normal file
View file

@ -0,0 +1,2 @@
#!/bin/bash
find /Users/8ballsystem/Downloads -mtime +8 -exec rm -rv {} \; | tee -a deleted.log