我知道我可以使用ls -ltr
按时间顺序列出文件,但有没有办法执行命令只列出在另一个文件创建日期之后创建的文件(让我们称之为{{1} })?
我假设命令看起来像这样:
acknowledge.tmp
答案 0 :(得分:1)
使用-newer
命令的find
选项:
-newer file True if the current file has been modi- fied more recently than the argument file.
所以你的命令就是
find /path/to/directory -newer acknowledge.tmp
但是,这将进入子目录
并返回结果