[Shell command] sed コマンドで行末にカンマを付ける

作成日: 2022年02月10日

ファイルの内容が下記となる dummy.txt を作成します。

one
two
three

dummy.txtcat コマンドで sed コマンドに渡します。s/$/,/g では行末を表す $, に置き換え行います。

cat dummy.txt | sed -e 's/$/,/g'

実行結果は下記となります。

one,
two,
three,
Shell command