2

Bash 脚本不是我的强项。我有一个结构为

% comment
filename1 pattern-to-search1
filename1 pattern-to-search2
...

我想为文件中的每一行编写一个脚本来 grep for all filenamepattern-to-mat

到目前为止我有

while read file p
do
    if [ "${file:0:1}" != "%" ]
    then
    grep -o "$p" $file | wc -l
    fi
done
echo -e "\nDone."

但它不会跳过以%. 有任何想法吗?

4

1 回答 1

1

我只是做

grep -v '^%' | while read file p
do
    grep -c "$p" -- "$file"
done

这样,注释行甚至不会到达循环read

于 2012-11-26T18:07:29.320 回答