如果希望查找更改时间比某个文件新但比另一个文件旧的所有文件,可以使用-newer选项。
它的一般形式为:
$ find . / -newer oldest_file.txt ! -newer newest_file.txt -exec ls -l {} \;

05-06 03:39