ctpv/deplistadd.sh

17 lines
176 B
Bash
Raw Normal View History

2022-06-18 17:50:57 +02:00
#!/bin/sh
table="$(mktemp XXXXXX)"
trap 'rm "$table"' EXIT
cat > "$table"
sed -i "
/TABLESTART/,/TABLEEND/ {
/TABLESTART/ {
r $table
b
}
/TABLEEND/!d
}
" "$1"