Project

General

Profile

1
#!/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
	in_place "$top_file" grep -F -e '*' -e '#'
11
	in_place "$top_file" $sed_cmd 's/^OMIT#.*$/& # included as part of another table/'
12
}
13

    
14
all()
15
{
16
	echo_func
17
	filter
18
}
19

    
20
fi
(3-3/3)