mirror of
https://github.com/dataforcanada/d4c-datapkg-statistical.git
synced 2026-06-13 14:10:55 +02:00
12 lines
353 B
Bash
Executable File
12 lines
353 B
Bash
Executable File
#!/bin/bash
|
|
if [ ! -d "${DATA_FOLDER}/geosuite" ]
|
|
then
|
|
echo "Making directory ${DATA_FOLDER}/geosuite/"
|
|
mkdir -p ${DATA_FOLDER}/geosuite/{input,extracted,output}
|
|
fi
|
|
|
|
INPUT_FOLDER="${DATA_FOLDER}/geosuite/input"
|
|
|
|
echo "Downloading geosuite files"
|
|
aria2c -x16 -i "${SCRIPT_DIR}/geosuite/files.txt" --dir=${INPUT_FOLDER} --auto-file-renaming=false
|