ctpv/deptable/insert.awk

21 lines
227 B
Awk
Raw Normal View History

2022-07-25 19:11:40 +02:00
#!/usr/bin/gawk -f
@include "inplace"
BEGIN {
while ((getline line < "-") > 0)
input = input line "\n"
close("-")
}
/TABLEEND/ {
table = 0
printf "%s", input
}
!table
/TABLESTART/ {
table = 1
}