11 lines
166 B
Bash
11 lines
166 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
function fetch() {
|
||
|
"./fetch_$1.sh" | json_reformat -m > "$1.json.tmp"
|
||
|
rm -f "$1.json"
|
||
|
mv "$1.json.tmp" "$1.json"
|
||
|
}
|
||
|
|
||
|
fetch streets
|
||
|
fetch city_outlines
|