ctpv/deptable/insert.awk
2022-07-26 00:01:08 +05:00

21 lines
227 B
Awk
Executable File

#!/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
}