update
This commit is contained in:
parent
a836b155f3
commit
121861b4ad
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# 设置文件保留时间为2天
|
# 设置文件保留时间为2天
|
||||||
DAYS=2
|
DAYS=1 # 1代表大于1天,即2天
|
||||||
|
|
||||||
# 使用find命令查找所有符合条件的文件
|
# 使用find命令查找所有符合条件的文件
|
||||||
find /home/pi/mp4 -type f -mtime +$DAYS -exec rm -f {} \;
|
find /home/pi/mp4 -type f -mtime +$DAYS -exec rm -f {} \;
|
||||||
|
|
Loading…
Reference in New Issue