我想将以下
搜索限制为仅包含
修改日期的
文件< =“2009-05-29 11:59:00”
find /path -name "*.sb" ! -name "*[^0-9]*.sb" -type f -print
我正在使用CentOS
命令find / path -mtime 7将为您提供超过7天的
文件,并找到! -newer somefile会为你提供比somefile更旧的
文件.所以…
touch -d "2009-05-29 11:59:00" timestampfile
find /path -name "*.sb" ! -name "*[^0-9]*.sb" ! -newer timestampfile -type f -print
原文链接:https://www.f2er.com/linux/396914.html