9 lines
166 B
Bash
9 lines
166 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# 设置文件保留时间为2天
|
||
|
DAYS=2
|
||
|
|
||
|
# 使用find命令查找所有符合条件的文件
|
||
|
find /home/pi/mp4 -type f -mtime +$DAYS -exec rm -f {} \;
|
||
|
|