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脚本实现在文件指定的行插入字符串,布布扣,bubuko.com

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

上一篇:Linux下管理员强行踢出用户的命令使用方法


下一篇:linux 查看硬盘i/o的状态