次のような.txtファイルの統計を収集したいとします。
misses 15
hit 18
misses 20
hit 31
すべての行を出力するだけのbashスクリプトを作成しました。
#!/bin/bash
while read line
do
echo $line
done <t.txt
私が今欲しいのはこれです:例は擬似コードにあります:
read every line
if first column is miss add the number to total misses
if hits add the number to total hits
print total hits, and total misses in a file
私は検索しましたが、これはawkで実行できます。awkでこれを行うのを手伝ってもらえますか?