diff options
| author | codecrafters-bot <hello@codecrafters.io> | 2025-12-05 03:43:32 +0000 |
|---|---|---|
| committer | codecrafters-bot <hello@codecrafters.io> | 2025-12-05 03:43:32 +0000 |
| commit | eb98380e577eb3a660eaed9bd83f6f9a660cd609 (patch) | |
| tree | 78626606e82168b59b3344fa42924b520fd620b1 /download_sample_databases.sh | |
| download | sqlite-zig-eb98380e577eb3a660eaed9bd83f6f9a660cd609.tar.gz sqlite-zig-eb98380e577eb3a660eaed9bd83f6f9a660cd609.zip | |
init [skip ci]
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." |