linux find -maxdepth 和xargs 用法
阿新 • • 發佈:2019-01-09
xargs
之所以能用到這個命令,關鍵是由於很多命令不支援|管道來傳遞引數,而日常工作中有有這個必要,所以就有了xargs命令,例如:
這個命令是錯誤的
find /sbin -perm +700 |ls -l
這樣才是正確的
find /sbin -perm +700 |xargs ls -l
mindepth 和 maxdepth
在root目錄及其子目錄下查詢passwd檔案。
1 | # find / -name passwd |
2 | ./usr/share/doc/nss_ldap-253/pam.d/passwd |
3 | ./usr/bin/passwd |
4 | ./etc/pam.d/passwd |
5 | ./etc/passwd |
在root目錄及其1層深的子目錄中查詢passwd. (例如root — level 1, and one sub-directory — level 2)
1 | # find -maxdepth 2 -name passwd |
2 | ./etc/passwd |
在root目錄下及其最大兩層深度的子目錄中查詢passwd檔案. (例如 root — level 1, and two sub-directories — level 2 and 3 )
1 | # find / -maxdepth 3 -name passwd |
2 | ./usr/bin/passwd |
3 | ./etc/pam.d/passwd |
4 | ./etc/passwd |
在第二層子目錄和第四層子目錄之間查詢passwd檔案。
1 | # find -mindepth 3 -maxdepth 5 -name passwd |
2 | ./usr/bin/passwd |
3 | ./etc/pam.d/passwd |