#-i表示该命令替换模式,regexp表示被替换的内容,replace表示将要替换的内容,filename表示被操作的文件
sed -i 's/regexp/replacement/g' filename
例如有个文件叫 command.txt,内容如下:
1 command
2 command
3 command
4 command
现在需要将"1 command"这一行替换成"yum install -y wget",则输入如下命令:
sed -i 's/1 command/yum install -y wget/g' command.txt