Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
find / \ -newer $1
以上是我到目前为止的代码。我试图让 find 找到比参数 1 更新的所有文件,同时只停留在当前目录中。我尝试了各种使用 prune 的方法,但我似乎找不到一种有效的方法。有什么建议么?
谢谢
你想要-maxdepth 1国旗。find /如果要对当前目录进行操作,为什么要使用?它应该是这样的:
-maxdepth 1
find /
find . -maxdepth 1 -newer $1