Project

General

Profile

1 8291 aaronmk
#!/bin/bash -e
2 8286 aaronmk
. "$(dirname "${BASH_SOURCE[0]}")"/../../lib/table.run
3
4
MySQL_export ()
5
{
6 8463 aaronmk
	echo_func "$@"
7 8286 aaronmk
	inline_make <<'EOF'
8
table.tsv:
9
	$(self_dir)/MySQL_export >$@
10
EOF
11
}
12
13
import ()
14
{
15 8463 aaronmk
	echo_func "$@"
16 8286 aaronmk
	MySQL_export
17 8302 aaronmk
	"$(dirname "${BASH_SOURCE[0]}")"/../../lib/table.run "$FUNCNAME" "$@"
18 8286 aaronmk
}