shithub: 9intro

ref: 2b99422480d596ebc26921c87c6bb81a07949f3e
dir: /idx/range.prep/

View raw version
#!/bin/rc
awk ' # range.prep
#   Input:  ["%begin"|"%end"|""] string (tab) number
#   Output: string (tab) ["b"|"e"|"a"]  (tab) number

BEGIN		{ FS = OFS = "\t" }
		{ f2 = "a" }
$1 ~ /^%begin/	{ f2 = "b"; sub(/^%begin */, "", $1) }
$1 ~ /^%end/	{ f2 = "e"; sub(/^%end */, "", $1) }
		{ print $1, f2, $2 }
' $*