Stupid-Scripts/download.sh
eightball ee397d63db 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>
2025-08-17 17:16:51 +00:00

2 lines
No EOL
95 B
Bash

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