ctpv/deplistadd.sh
2022-06-18 20:50:57 +05:00

17 lines
176 B
Bash
Executable File

#!/bin/sh
table="$(mktemp XXXXXX)"
trap 'rm "$table"' EXIT
cat > "$table"
sed -i "
/TABLESTART/,/TABLEEND/ {
/TABLESTART/ {
r $table
b
}
/TABLEEND/!d
}
" "$1"