
大家好,又见面了,我是你们的朋友全栈君。
find path -option [ -print ] [ -exec -ok command ] {} \;find . -name '[A-Z]*.txt' -print find /etc -name 'host*' -printfind ~ -name '*' -printfind . -name 'out*' -prune -o -name "*.txt" -print find . -path "./aa -prune -o -name "*.txt" -print"find . -perm 755 -printfind ./ -perm /220
find ./ -perm /u+w,g+w
find ./ -perm /u=w,g=wfind . -type l -print类型
find / -user www -type f -printfind / -group mysql -type f -printfind . -mtime -2 -type f -print find . -mtime +2 -type f -print find . -atime -1 -type f -printfind . -atime +1 -type f -printfind . -ctime -1 -type f -print find . -ctime +1 -type f -print find . -cmin +10 -type f -print find / -size +1M -type f -print find . -size 6c -print find . -size -32k -print 发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/165110.html原文链接:https://javaforall.cn