2012年9月15日 星期六

(find) 找目錄下是755的檔案



[UserC@localhost ~]$ ls -al
total 40
drwx------. 4 UserC UserC 4096 Sep 15 13:47 .
drwxr-xr-x. 7 root  root  4096 Sep 15 13:46 ..
-rw-r--r--. 1 UserC UserC    4 Sep 15 13:47 644.txt
-rwxr-xr-x. 1 UserC UserC    4 Sep 15 13:47 755.txt
-rw-r--r--. 1 UserC UserC   18 May 11 02:31 .bash_logout
-rw-r--r--. 1 UserC UserC  176 May 11 02:31 .bash_profile
-rw-r--r--. 1 UserC UserC  124 May 11 02:31 .bashrc
drwxr-xr-x. 2 UserC UserC 4096 Nov 12  2010 .gnome2
drwxr-xr-x. 4 UserC UserC 4096 Sep 13 22:20 .mozilla
-rw-------. 1 UserC UserC  694 Sep 15 13:47 .viminfo
[UserC@localhost ~]$ find . -type f -perm 755 -exec ls -l {} \;
-rwxr-xr-x. 1 UserC UserC 4 Sep 15 13:47 ./755.txt
[UserC@localhost ~]$  find . -type f -perm 644 -exec ls -l {} \;
-rw-r--r--. 1 UserC UserC 4 Sep 15 13:47 ./644.txt
-rw-r--r--. 1 UserC UserC 18 May 11 02:31 ./.bash_logout
-rw-r--r--. 1 UserC UserC 176 May 11 02:31 ./.bash_profile
-rw-r--r--. 1 UserC UserC 124 May 11 02:31 ./.bashrc
[UserC@localhost ~]$


沒有留言:

張貼留言