MarseyWorld/scripts/cleanup_videos.sh

6 lines
150 B
Bash
Raw Normal View History

2024-10-22 15:49:02 +00:00
#!/bin/bash
find /videos -not -name "*.mp4" -type f -delete
2024-10-29 19:22:00 +00:00
find /videos -name "*-t.mp4" -type f -delete
find /temp_songs -type f -mtime +30 -delete