我需要得到这样的东西
#Batch Job - AB1234
texts
texts
texts
texts
texts
#--------
我用了
awk '/#Batch Job.*AB1234/,/#--.*/' filename
我进展顺利。
但是当我尝试使用此脚本参数化 AB1234 时,我失败了。
BATCHJOBNAME=AB1234
awk -v batchjobname=$BATCHJOBNAME '
/#Batch.*/ { f=1 ; m=0 ; res="" }
f { res = res $0 ORS }
f && /Job.*/ && index($2,batchjobname) > 0 { m=1 ;}
/<#--.*>/ { f=0 ; if (m) print res ; }
' filename
答案1
尝试这个:
BATCH=AB1234
awk -v batch="#Batch Job.*${BATCH}" '($0 ~ batch),/#--.*/' filename