lot_manager/bash/cron_delete_mp4.sh

9 lines
196 B
Bash
Raw Normal View History

2023-12-05 18:20:19 +08:00
#!/bin/bash
# 设置文件保留时间为2天
2023-12-18 09:36:37 +08:00
DAYS=1 # 1代表大于1天即2天
2023-12-05 18:20:19 +08:00
# 使用find命令查找所有符合条件的文件
find /home/pi/mp4 -type f -mtime +$DAYS -exec rm -f {} \;