本文共 239 字,大约阅读时间需要 1 分钟。
init=/bin/sh
mount -o remount,rw /;
sed -i 's/指定字符串/&希望插入的字符串/' 文件
在一文件中指定的字符后插入内容
sed -i 's/指定的字符/&要插入的字符/' 文件
sed -i '$a\字符串' file.txt 在文本行尾添加一行字符串
或是cat >> /file.txt <<byRuiy
String....
byRuiy
sed -i '1c\string' file.txt 在行首添加 一行 string
转载地址:http://hlezx.baihongyu.com/