我有一个命令可以过滤大小 > 10 MB 的文件,但只想在本地挂载点上运行它。目前,我已经在系统中挂载了一些远程 NFS,/nfs
因此在搜索中我不想包含这个。
我使用的确切命令是:find . -type f -size +10M -exec ls -ltrh {} \;
我该如何继续?
答案1
如果您使用,find
您可以使用该选项(来自man find
):
-xdev Don't descend directories on other filesystems.
我有一个命令可以过滤大小 > 10 MB 的文件,但只想在本地挂载点上运行它。目前,我已经在系统中挂载了一些远程 NFS,/nfs
因此在搜索中我不想包含这个。
我使用的确切命令是:find . -type f -size +10M -exec ls -ltrh {} \;
我该如何继续?
如果您使用,find
您可以使用该选项(来自man find
):
-xdev Don't descend directories on other filesystems.