linux shell sed 實現字符串查找、插入實例

1.在特定字符串所在行後添加一行或多行字符:bash 實例一:經過grep獲取特定字符串所在的行號處添加行 #!/bin/bash num=$(grep -nr 'restrict default nomodify notrap nopeer noquery' /etc/ntp.conf | awk -F ':' '{print $1}') numa=$num"a" sed -i "restri
相關文章
相關標籤/搜索