当前位置: 技术问答>linux和unix
如何使用find中的-mount选项
来源: 互联网 发布时间:2015-09-14
本文导语: 我用find /home/tso "abc" -mount为什么无法执行呢? 系统报“find: 0652-017 - is not a valid option” 而我想找/home/tso目录下的文件,但不涉及其子目录下的文件,该如何写命令呢? 谢谢! | find /h...
我用find /home/tso "abc" -mount为什么无法执行呢?
系统报“find: 0652-017 - is not a valid option”
而我想找/home/tso目录下的文件,但不涉及其子目录下的文件,该如何写命令呢?
谢谢!
系统报“find: 0652-017 - is not a valid option”
而我想找/home/tso目录下的文件,但不涉及其子目录下的文件,该如何写命令呢?
谢谢!
|
find /home/tso "abc" -mount 试过可以运行
如果要找/home/tso目录下文件,但不涉及其子目录下的文件,用
find /home/tso -maxdepth 1 -type f
如果要找/home/tso目录下文件,但不涉及其子目录下的文件,用
find /home/tso -maxdepth 1 -type f
|
-mount表示不进入其他的文件系统,同 -xdev,很有用,不会在你其他加载的fat32磁盘,光盘或nfs文件系统去搜索