Revision 8881
Added by Aaron Marcuse-Kubitza over 11 years ago
run | ||
---|---|---|
9 | 9 |
|
10 | 10 |
export_ () |
11 | 11 |
{ |
12 |
echo_func "$@"
|
|
12 |
echo_func |
|
13 | 13 |
pg_export_table_to_dir_no_header geoscrub_input "$@" |
14 | 14 |
} |
15 | 15 |
|
Also available in: Unified diff
*{.sh,run}: changed echo_func to an alias that includes the "$
", so that callers don't need to specify the "$
" manually. although the original echo_func function is still there, callers need to switch over to the alias at the same time as it's defined because otherwise the "$@" would be doubled, since echo_func refers to the alias instead.