オーク awk は強力な文字列処理機能と、 C 言語に似た文法を併せ持つ言語処理系であるが、 フィルターとしての性格を持ったコマンドなので6、ここで紹介しておく。
多分 C 言語を知っている人には、 次のプログラムを理解するのは難しくないであろう (別に今理解する必要はない)。 先頭に ee980 というパターンを持つ行の第 1, 5, 7 フィールドを表示し、 第7フィールドが /bin/csh である数を数え、その割合を求めている。
#!/usr/meiji/gnu/bin/gawk -f BEGIN { FS = ":"; number = 0; numofcsh = 0; } /^ee980/ { printf("%s %20s, %s\n", $1, $5, $7); number++; if ($7 == "/bin/csh") numofcsh++; } END { printf("%d人中 csh を使っているのは %d 人 (%4.1f\%)です。\n", number, numofcsh, 100.0 * numofcsh / number); } |
test.awk ee-list |