1
|
#!/bin/bash -e
|
2
|
|
3
|
if false; then #### run script template:
|
4
|
#!/bin/bash -e
|
5
|
. "$(dirname "${BASH_SOURCE[0]}")"/path/to/view.run
|
6
|
fi ####
|
7
|
|
8
|
. "$(dirname "${BASH_SOURCE[0]}")"/table.run
|
9
|
|
10
|
if self_not_included; then
|
11
|
|
12
|
export new_term_prefix= # don't re-prepend *
|
13
|
|
14
|
# always remake, in case view has changed
|
15
|
func_override remake_VegBIEN_mappings__table_run
|
16
|
remake_VegBIEN_mappings()
|
17
|
{
|
18
|
echo_func
|
19
|
in_top_dir rm -f header.csv # remake it since columns may change
|
20
|
remake=1 remake_VegBIEN_mappings__table_run
|
21
|
}
|
22
|
|
23
|
fi
|