sed可以按照指令或腳本編輯文本的linux工具,文本處理功能非常強(qiáng)大,本文總結(jié)一些工作中常用的sed模板,方便大家使用
成都創(chuàng)新互聯(lián)是專業(yè)的翼城網(wǎng)站建設(shè)公司,翼城接單;提供成都網(wǎng)站設(shè)計(jì)、做網(wǎng)站,網(wǎng)頁設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行翼城網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來合作!
sed -i 's/aaa/bbb/g' /path/to/file
stat deploy | sed -n '/^Modify.*/p' # 找到
stat deploy | sed -n '/^Modify.*/p' | grep -Eo "....-..-.. ..:..:.." # 提取出修改起義
sed -i '/^aaa/s/on/off/' /path/to/file
可以配合grep使用,完成自動(dòng)設(shè)置參數(shù)
have_aaa=$(grep aaa /path/to/file | sed '/^#.*/d') # 尋找是否以存在aaa參數(shù)
if [ ! -z $have_aaa ];then # 如果存在
sed -i '/^aaa/s/on/off/' /path/to/file # 則修改為off
else # 如果不存在
sed -i '/ccc/a aaa off' /path/to/file # 則在ccc參數(shù)下新增 aaa off
# sed -i '$a/aaa off' /path/to/file # 則在最后新增 aaa off
fi
cat /etc/my.cnf | sed '/^#.*/d'
找到包含aaa的行并刪除
sed -i '/aaa/d' /path/to/file
在ccc開頭的行下面插入 something
sed -i '/^ccc/a something' /path/to/file
在ccc開頭的行后追加 something
sed -i '/^ccc/s/$/something/' /path/to/file
在ccc后緊接著追加something
sed -i 's/ccc/&something/' /path/to/file