diff options
Diffstat (limited to 'download_sample_databases.sh')
| -rwxr-xr-x | download_sample_databases.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/download_sample_databases.sh b/download_sample_databases.sh new file mode 100755 index 0000000..03e0573 --- /dev/null +++ b/download_sample_databases.sh @@ -0,0 +1,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." |