Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「:Cc:」を含む行の前に「chat」という単語を追加したいのですが、awkコマンドでこれを行うにはどうすればよいですか。
awk '/:Cc:/ { printf "chat" } { print }'探しているものが機能するかどうかを試してみてください。
awk '/:Cc:/ { printf "chat" } { print }'