find命令查找比某个文件新或旧的文件,有需要的朋友可以参考下。
如果希望查找更改时间比某个文件新但比另一个文件旧的所有文件,可以使用-newer选项。
newest_file_name ! oldest_file_name
---其中,!是逻辑非符号。 $ find . / -newer age.txt ! -newer belts.txt -exec ls -l {} \;
例如:
#touchu -t 201212171700 startemp
#touchu -t 201212171740 end temp #find ./ -newer starttemp -a ! -newer aaa -exec ls -l {} \;
这里有两个文件,它们的更改时间大约相差两天。
$ touch -t 05042140 time.txt
$ ls -l time.txt -rw-r--r-- root root 0 May 4 21:40 time.txt
一个符合要求的文件已经被创建;这里我们假设今天是五月四日,而该文件的更改时间是2 1 : 4 0,比现在刚好早两个小时。
$ find ./ -newer time.txt -print
(责任编辑:IT) |