summaryrefslogtreecommitdiff
path: root/download_sample_databases.sh
blob: 03e0573f1676082bc4a5046546511bd2a8e7b724 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

echo "Downloading superheroes.db: ~1MB (used in stage 7)"
curl -Lo superheroes.db https://raw.githubusercontent.com/codecrafters-io/sample-sqlite-databases/master/superheroes.db

echo "Downloading companies.db: ~7MB (used in stage 8)"
curl -Lo companies.db https://raw.githubusercontent.com/codecrafters-io/sample-sqlite-databases/master/companies.db

echo "Sample databases downloaded."