Shellスクリプトファイルを巡って特定の文字列を含む行数を見つける
214 ワード
#!/bin/bash
printf "*************************************
"
a=0
while read line
do
[[ $line =~ "css" ]] && ((a++))
done < test.txt
echo $a
#!/bin/bash
printf "*************************************
"
a=0
while read line
do
[[ $line =~ "css" ]] && ((a++))
done < test.txt
echo $a