最初書いたスクリプトはこちらです。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
LIST=ls /usr/local/tomcat/logs/logs.log.2013-*-*.gz > ./targetlist.txt | |
count=0 | |
sed -e "s/#.*//" -e "s/^\s*$//" $LIST | while read line; do | |
temp=`zgrep -c -E -i -w 'target1|target2' $line` | |
count=$(($count + $temp)) | |
echo "$count" | |
done | |
echo "$count" |
特に問題ないように見えますが、最後のecho文の結果が0(zero)になります。
Google先生に聞くと下記のサイトを教えて下れました。
http://www.edwardawebb.com/linux/scope-issue-bash-loops
それで修正したスクリプトがこちら。正しくカウントできました。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
ls /usr/local/tomcat/logs/logs.log.2013-*-*.gz > ./targetlist.txt | |
exec 0<./targetlist.txt | |
count=0 | |
while read line; do | |
temp=`zgrep -c -E -i -w 'target1|target2' $line` | |
count=$(($count + $temp)) | |
echo "$count" | |
done | |
echo "$count" |
ではなぜこの現象が起きるかというとパイプ(|)からのstdinはいつもsubshellを使うそうです。なのでループの中のcountはループ内の変数になってしまいます。
while文前パイプを使った場合よく起きるそうです。w
上で修正したスクリプトは自分のスタイルではないので下記のように見やすく修正しました。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
RESULT=`ls /usr/local/tomcat/logs/logs.log.2013-*-*.gz` | |
count=0 | |
while read line; do | |
temp=`zgrep -c -E -i -w 'target1|target2' $line` | |
count=$(($count + $temp)) | |
echo "$count" | |
done <<< "$RESULT" | |
echo "$count" |
No comments:
Post a Comment