Sed在匹配行前后加入一行

a 追加内容 sed ‘/匹配词/a\要加入的内容’ example.file(将内容追加到匹配的目标行的下一行位置)
i 插入内容 sed ‘/匹配词/i\要加入的内容’ example.file 将内容插入到匹配的行目标的上一行位置)
示例:
#我要把文件的包含“chengyongxu.com”这个关键词的行前或行后加入一行,内容为“allow chengyongxu.cn”

1#行前加
2sed -i '/allow chengyongxu.com/i\allow chengyongxu.cn' the.conf.file
3#行前后
4sed -i '/allow chengyongxu.com/a\allow chengyongxu.cn' the.conf.file

( ! ) Warning: count(): Parameter must be an array or an object that implements Countable in /var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php on line 169
Call Stack
#TimeMemoryFunctionLocation
10.0012412840{main}( ).../index.php:0
20.07434263048Joomla\CMS\Application\SiteApplication->execute( ).../index.php:49
30.07434263048Joomla\CMS\Application\SiteApplication->doExecute( ).../CMSApplication.php:196
40.273211454064Joomla\CMS\Application\SiteApplication->dispatch( ).../SiteApplication.php:233
50.273811478568Joomla\CMS\Component\ComponentHelper::renderComponent( ).../SiteApplication.php:194
60.274511533896Joomla\CMS\Component\ComponentHelper::executeComponent( ).../ComponentHelper.php:377
70.274811561296require_once( '/var/www/vhosts/shan.info/httpdocs/components/com_k2/k2.php' ).../ComponentHelper.php:402
80.282111960928K2ControllerItem->execute( ).../k2.php:64
90.282111960928K2ControllerItem->display( ).../BaseController.php:710
100.291012611632K2ControllerItem->display( ).../item.php:78
110.291012611632K2ControllerItem->display( ).../controller.php:19
120.295012982672Joomla\CMS\Cache\Controller\ViewController->get( ).../BaseController.php:663
130.298313003040K2ViewItem->display( ).../ViewController.php:102
140.368515812112K2ViewItem->display( ).../view.html.php:742
150.368515812112K2ViewItem->loadTemplate( ).../HtmlView.php:230
160.371115985048include( '/var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php' ).../HtmlView.php:701

( ! ) Notice: Only variables should be assigned by reference in /var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php on line 478
Call Stack
#TimeMemoryFunctionLocation
10.0012412840{main}( ).../index.php:0
20.07434263048Joomla\CMS\Application\SiteApplication->execute( ).../index.php:49
30.07434263048Joomla\CMS\Application\SiteApplication->doExecute( ).../CMSApplication.php:196
40.273211454064Joomla\CMS\Application\SiteApplication->dispatch( ).../SiteApplication.php:233
50.273811478568Joomla\CMS\Component\ComponentHelper::renderComponent( ).../SiteApplication.php:194
60.274511533896Joomla\CMS\Component\ComponentHelper::executeComponent( ).../ComponentHelper.php:377
70.274811561296require_once( '/var/www/vhosts/shan.info/httpdocs/components/com_k2/k2.php' ).../ComponentHelper.php:402
80.282111960928K2ControllerItem->execute( ).../k2.php:64
90.282111960928K2ControllerItem->display( ).../BaseController.php:710
100.291012611632K2ControllerItem->display( ).../item.php:78
110.291012611632K2ControllerItem->display( ).../controller.php:19
120.295012982672Joomla\CMS\Cache\Controller\ViewController->get( ).../BaseController.php:663
130.298313003040K2ViewItem->display( ).../ViewController.php:102
140.368515812112K2ViewItem->display( ).../view.html.php:742
150.368515812112K2ViewItem->loadTemplate( ).../HtmlView.php:230
160.371115985048include( '/var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php' ).../HtmlView.php:701
back to top