标签: shell text line
我要说的是我想在此已写入的.txt文件中添加“ C”:
a:b:c b:c:a
并使它像这样:
a:C:c b:c:a
答案 0 :(得分:0)
您可以使用sed:
sed
sed -i -e 's/a:b:c/a:C:c/g' file.txt