sed:
sed -i '//'a\woshiyizhixiaoxiaoniao config.xml 追加,在后追加
sed -i '//'i\woshiyizhixiaoxiaoniao config.xml 插入,在前插入
sed -n "//,/<\/birdman>/p" config.xml 包含与的内容
sed -i "//,/^$/c\" config.xml 替换到空行间的内容为
sed -e 's/birdman//g' config.xml g 全局的
sed -e 's/birdman//' config.xml
sed -e '/birdman/p' config.xml p 打印
sed -e '/birdman/p' config.xml
sed '/^$/d' 删除空行
sed 's/^[[:space:]]*//g' 1.txt 删除行首的空格
sed 's/^ *//g' 1.txt 删除行首的空格
sed -i '/birdman/r aa.txt' config.xml 在匹配行后附加aa.txt中的文件内容到config.xml 中
sed -e '/birdman/w aa.txt' config.xml 将匹配birdman的行写入到aa.txt 中
sed -e '/.of*/q' config.xml 匹配退出
sed -i "/birdman/s/joinweb/guihuanweb/g" server_all.txt 将匹配birdman这行中的joinweb替换成guihuanweb
sed -e 's/12fadgd/&aa/' bb.txt 在12fadgd后添加字符串aa