5 lines
132 B
Bash
5 lines
132 B
Bash
#!/usr/bin/bash
|
|
|
|
# clear all files in ~/Downloads older than 24h
|
|
fd --changed-before 1d --full-path ~/Downloads --exec-batch rm -rf
|