3 lines
174 B
Bash
3 lines
174 B
Bash
|
# Get all the maps in /home/beatsaber-wip-uploader/maps/ and delete the ones that are older than 30 minutes
|
||
|
|
||
|
find /home/beatsaber-wip-uploader/maps/ -type f -mmin +30 -delete
|