2010-12-09 90 views

回答

8

你可以使用:

find $workingDir/testcases -type f ! -name "*.*" -perm -og+rx 
+0

什麼呢``怎麼辦?我不知道它的存在 – Quamis 2010-12-09 12:08:28

1
#!/bin/bash 

DIR="./"; 

find $DIR -type f -perm -og+rx | while read file 
do 
    echo $file | egrep -v "\.[^/]+$"; 
done