Aloha,我一直在试图弄清楚如何在两个占位符之间替换/插入文本字符串。
#start
REPLACE ANYTHING IN HERE
#end
最初我试图通过 sed 使用 BASH 执行此操作,但是当我尝试将变量传递给 sed 时遇到了障碍。
sed -n -i '/#start/{p;:a;N;/#end/!ba;s/.*\n/hello\n/};p' file.txt
退货
#start
hello
#end
但是当我尝试时没有快乐
sed -n -i '/#start/{p;:a;N;/#end/!ba;s/.*\n/$replace_var\n/};p' file.txt
或者
sed -n -i "/#start/{p;:a;N;/#end/!ba;s/.*\n/$replace_var\n/};p" file.txt
我已经在这几个小时了,并且已经四处搜索但没有找到解决方案。我正在尝试使用 python 或其他语言,或者可能使用 awk。我是这个领域的新手,所以任何有用的信息都将不胜感激。
提前致谢
这就是我最后的结果。这是一个与 cron 结合使用的脚本,使用最新发布的 ssh 阻止列表更新我的 /var/etc/hosts.deny 文件。
import re
import urllib2
hosts_deny = open('/etc/hosts.deny','r+')
hosts_deny_text = hosts_deny.read()
blockedHosts = urllib2.urlopen('http://www.openbl.org/lists/hosts.deny').read()
place = re.compile('(?<=#start)(\r?\n)'
'(.*?)'
'(?=\r?\n#end)',re.DOTALL)#DOTALL enables '.' to also include
#a new line
hosts_deny_text = re.sub(place, '\n'+ blockedHosts, hosts_deny_text)
hosts_deny.seek(0)
hosts_deny.write(hosts_deny_text)
hosts_deny.close()