Project

General

Profile

1 11235 aaronmk
#!/bin/bash -e
2
. "$(dirname "${BASH_SOURCE[0]}")"/../../../lib/runscripts/util.run
3
.rel ../../../lib/sh/local.sh
4
5
if self_not_included; then
6
7
filter()
8
{
9
	echo_func
10 11241 aaronmk
	<"${top_file/.exclude./.}" echo_run grep -F -e '--' -e '#'\
11 11238 aaronmk
	|sed 's/^OMIT#.*$/& # included as part of another table/' >"$top_file"
12 11235 aaronmk
}
13
14
all()
15
{
16
	echo_func
17
	filter
18
}
19
20
fi