命令s / test / blah / 1和1s / test / blah /似乎不起作用.还有另一种方式吗?
sed -i '1!b;s/test/blah/' file
只会在第一行只替换第一次测试,
或者如果您只想改变第一行:
sed -i '1c\replacement' file