查看主题内容
Brother, you still don't understand me, I think it's the translator. If I use two SED commands sed -ex -ni str=0,a,b,edit1 sed -ex -ni str=0,t,x,edit1 It will always focus on the second one, in this case it will focus on "t" and "x". I need to change several letters, not just "a" and "b".
keketoco00 Brother, you still don't understand me, I think it's the translator. If I use two SED comm ...
要替换几个字母就写几条命令啊
sed -ex -ni str=0,a,b,edit1
sed -ex -ni str=0,t,x,str
sed -ex -ni str=0,c,g,str
sed -ex -ni str=0,d,h,str
sed -ex -ni str=0,e,i,str
sed -ex -ni str=0,f,j,str
Now I understand you, thank you very much for your time.