Linux Shell脚本实现在文件指定的行插入字符串

涉及知识点:grep字符串查找,awk截取列,until条件操作,sed字符串插入,变量与字符串连接等。

人工操作(首先vim打开文件找到字符串所在的位置,插入操作):

vim /etc/glance/glance-api-paste.ini
# Line69
auth_host = controller
admin_user = glance
admin_tenant_name = service
admin_password = 94fbb57c427f539b0fc5

Shell脚本实现(grep查找字符串位置,sed执行插入操作):

num=$(grep -n ‘\[filter:authtoken\]‘  /usr/share/glance/glance-api-paste.ini | awk -F ‘:‘ ‘{print $1}‘)
nump=1p
until [[ $(sed -n "$nump" /usr/share/glance/glance-api-paste.ini) == "" ]]; do
    num=$(expr $num + 1)
    nump=$num"p"
done
numa=$num"a"
sed -i ‘$numa auth_host = controller
admin_user = glance
admin_tenant_name = service
admin_password = 94fbb57c427f539b0fc5‘ /usr/share/glance/glance-api-paste.ini

注:

  1. 已无害化处理。

  2. sed中的sub命令如a插入,p打印等不能直接跟变量相连接,使用双引号进行连接,如“numa=$num"a"”。

blog.51cto.com 标签: shellsedgrep字符串操作变量与字符串连接

本文出自 “通信,我的最爱” 博客,请务必保留此出处http://dgd2010.blog.51cto.com/1539422/1396309

Linux Shell脚本实现在文件指定的行插入字符串,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。