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.
csv ファイルの最後のフィールドを置き換えるxyzには、次のコマンドを使用します。
xyz
awk -F, '{$NF="xyz";}1' OFS=, file
file の 2 列目を value で上書きするにはどうすればよいxyzですか?
何方をお探しですか:
awk '{$2="XYX"}1' file
?
FSコンマになりたい場合:
FS
awk -F, '{$2="XYX"}1' OFS=, file