私はこのコードスニペットを持っています:
set calls = `cut -d" " -f2 ${2} | grep -c "$numbers"`
set messages = `cut -d" " -f2 ${3} | grep -c "$numbers"`
@ popularity = (calls * 3) + messages
とエラー
@ expression syntax
どういう意味ですか?grep -c
番号を返します、私は間違っていますか、事前に感謝します
$ numbersには数字のリストがあり、2と3のパラメーターにも数字が含まれています