mirror of
https://github.com/dataforcanada/d4c-datapkg-statistical.git
synced 2026-06-13 14:10:55 +02:00
11 lines
548 B
Bash
11 lines
548 B
Bash
# Make sure you have rclone installed
|
|
|
|
echo '[data-01-dataforcanada]' >> ~/.config/rclone/config
|
|
echo 'type = http' >> ~/.config/rclone/config
|
|
echo 'url = https://data-01.dataforcanada.org' >> ~/.config/rclone/config
|
|
|
|
# If you want to list the Census of Population dataset
|
|
rclone ls data-01-dataforcanada:/processed/statistics_canada/census_of_population
|
|
# If you want to copy the entire Census of Population dataset
|
|
rclone copy --progress --transfers=16 data-01-dataforcanada:/processed/statistics_canada/census_of_population census_of_population
|