1
以下程序列出目錄中的所有文件,但是如何只顯示那些沒有擴展名的「可執行」文件?查找沒有擴展名的可執行文件?
find $workingDir/testcases -type f -perm -og+rx | while read file
do
echo $file
done
以下程序列出目錄中的所有文件,但是如何只顯示那些沒有擴展名的「可執行」文件?查找沒有擴展名的可執行文件?
find $workingDir/testcases -type f -perm -og+rx | while read file
do
echo $file
done
你可以使用:
find $workingDir/testcases -type f ! -name "*.*" -perm -og+rx
#!/bin/bash
DIR="./";
find $DIR -type f -perm -og+rx | while read file
do
echo $file | egrep -v "\.[^/]+$";
done
什麼呢``怎麼辦?我不知道它的存在 – Quamis 2010-12-09 12:08:28