行の3番目の文字の変更

行の3番目の文字の変更

入力する:

dummy - 22847847
sha - 84734747
DHS - 374874

予想出力:

du1my - 22847847
sh1 - 84734747
DH1 - 374874

ベストアンサー1

$ cat test.txt
dummy - 22847847
sha - 84734747
DHS - 374874

$ awk '{$3=1}1' FS="" OFS="" test.txt
du1my - 22847847
sh1 - 84734747
DH1 - 374874

おすすめ記事