Revision 13427
Added by Aaron Marcuse-Kubitza over 10 years ago
README.TXT | ||
---|---|---|
110 | 110 |
export version=r[revision]_2 # +suffix to distinguish from last import |
111 | 111 |
# env var will be inherited by `screen` shell |
112 | 112 |
to import just a subset of the datasources: |
113 |
declare -ax inputs=(inputs/{src,...}/)
|
|
113 |
declare -ax inputs; inputs=(inputs/{src,...}/) # no () in declare on Mac
|
|
114 | 114 |
# array vars *not* inherited by `screen` shell |
115 | 115 |
export version=custom_import_name |
116 | 116 |
Start column-based import: . bin/import_all |
Also available in: Unified diff
bugfix: /README.TXT: Full database import: to import just a subset of the datasources: need to set @inputs separately from declaring it, because declare does not support () on Mac