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.
我有一个看起来像这样的文件:
ID1 ID2 3 ID2 ID3 3 ID4 ID5 3 ID6 ID7 4 ID8 ID9 4 ID8 ID6 4
我想将其更改为:
ID1 ID2 1 ID2 ID3 1 ID4 ID5 1 ID6 ID7 2 ID8 ID9 2 ID8 ID6 2
所以我想将第三列中的所有 3 和 4 分别更改为 1 和 2。对于非常大的文件,最有效的方法是什么?提前谢谢了!
awk '{ $3 -= 2; print }' filename >new_filename
或者,如果您真的只想触摸 3 和 4:
awk '{ if ( $3 == 3 ) { $3 = 1 } else if ( $3 == 4 ) { $3 = 2 }; print}' filename >new_filename
假设第三列始终是最后一列:
sed 's/\([^0-9]\)3$/\11/;s/\([^0-9]\)4$/\12/'