在文件中查找一行,并在bash中添加一行到行尾

时间:2013-09-18 16:11:39

标签: linux bash file-io sed

如何识别具有特殊模式的行开头并在行尾添加内容?

如果尚未附加应添加的模式

假设我想通过开头的模式在主机文件中找到一个特定的行,可能是ip-address,也可能是行上方的注释

一个例子可能是:

#This is your hosts file

127.0.0.1 localhost linux 

#This is added automatically 

192.168.1.2 domain1. com 

#this is added automatically to 

192.168.1.2 sub.domain1.com www.domain1.com

当您找到我告诉您的IP时,如何告诉bash。去结束行并添加一些东西

或其他情况

当bash找到评论#This is added automatically

下降2,然后转到行尾并添加一些内容

你看我是初学者,并且没有任何想法在这里使用什么以及如何使用。是由sed解决?或者这可以用grep完成吗?我必须学习AWK吗?

3 个答案:

答案 0 :(得分:5)

这会在行尾添加一些文字,格式为“127.0.0.1”。

grep -F "127.0.0.1" file | sed -ie 's/$/& ADDing SOME MORE TEXT AT THE END/g'

以下内容将通过sed:

添加到以127.0.0.1开头的文件中的行
sed -ie 's/^127.0.0.1.*$/& ADDing MORE TEXT TO THE END/g' file

要做同样的事情,您还可以使用awk

awk '/^127.0.0.1/{print $0,"ADD MORE TEXT"}' file > newfile && mv newfile file
  • EDIT

如果要通过变量调用IP地址,则语法可能略有不同:

var="127.0.0.1"
grep -F "$var" file | sed -ie 's/$/& ADD MORE TEXT/g'
sed -ie "s/^$var.*$/& ADD MORE TEXT/g" file
awk '/^'$var'/{print $0,"ADD MORE TEXT"}' file > newfile && mv newfile file

答案 1 :(得分:3)

鉴于以下内容:

TEXTFILE:

[root@yourserver ~]# cat text.log 
#This is your hosts file

127.0.0.1 localhost linux 
[root@yourserver ~]# 

bash脚本:

[root@yourserver ~]# cat so.sh 
#!/bin/bash

_IP_TO_FIND="$1"

# sysadmin 101 - the sed command below will backup the file just in case you need to revert

_BEST_PATH_LINE_NUMBER=$(grep -n "${_IP_TO_FIND}" text.log | head -1 | cut -d: -f1)
_LINE_TO_EDIT=$(($_BEST_PATH_LINE_NUMBER+2))
_TOTAL_LINES=$( wc -l text.log)
if [[ $_LINE_TO_EDIT -gte $_TOTAL_LINES ]]; then
   # if the line we want to add this to is greater than the size of the file, append it
  sed -i .bak "a\${_LINE_TO_EDIT}i#This is added automatically\n\n192.168.1.2 domain1. com" text.log
else
  # else insert it directly 
  sed -i .bak "${_LINE_TO_EDIT}i\#This is added automatically\n\n192.168.1.2 domain1. com" text.log
fi

用法:

bash ./so.sh 127.0.0.1

只需输入您尝试查找的IP地址,并在第一次出现时匹配此脚本。

希望这有帮助!

答案 2 :(得分:1)

这个内联sed应该可以工作:

sed -i.bak 's/^192\.168\.1\.2.*$/& ADDED/' hosts 
  1. 此sed命令查找以192.168.1.2
  2. 开头的行
  3. 如果发现,则会在这些行的末尾添加ADDED