Project

General

Profile

1
#!/bin/bash -e
2
. "$(dirname "${BASH_SOURCE[0]}")"/../../lib/runscripts/table.run
3

    
4
if self_not_included; then
5

    
6
MySQL_export ()
7
{
8
	echo_func
9
	inline_make 3<<'EOF'
10
table.tsv:
11
	$(self_dir)/MySQL_export >$@
12
EOF
13
}
14

    
15
import ()
16
{
17
	echo_func
18
	MySQL_export
19
	"$(dirname "${BASH_SOURCE[0]}")"/../../lib/runscripts/table.run "$FUNCNAME" "$@"
20
}
21

    
22
fi
(9-9/10)