書籍紹介
1日1問、半年以内に習得 シェル・ワンライナー160本ノック : https://gihyo.jp/book/2021/978-4-297-12267-6
内容
議事録を整形します。
シェル芸
cat gijiroku.txt | awk '{if($0=="すず"){printf("鈴木:")}else if($0=="さと"){printf("佐藤:")}else if($0=="やま"){printf("山田:")}else{print $0}}'
感想
awk
に頼りすぎているかもしれません。sed
とも仲良くなりたいです。