You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
399 B
10 lines
399 B
#!/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."
|