sed 搜索行并仅替换该行中的文本

sed 搜索行并仅替换该行中的文本

如果行包含 Z(大写),我想使用 sed 将任何 x(小)替换为 0

x,Z,y
y,X,z,
Y,z,x
x,Z,y

答案1

$ sed '/Z/s/x/0/g' <input_file>

相关内容