Files
bun.sh/bench/sqlite/download-northwind.sh
2022-07-09 18:28:32 -07:00

11 lines
351 B
Bash

#!/usr/bin/env bash
set -euo pipefail
rm -rf Northwind_large.sqlite.zip
curl -LJO https://github.com/jpwhite3/northwind-SQLite3/blob/master/Northwind_large.sqlite.zip?raw=true
unzip Northwind_large.sqlite.zip?raw=true
rm Northwind_large.sqlite.zip?raw=true
mv Northwind_large.sqlite /tmp/northwind.sqlite
rm -rf Northwind* || echo ""
rm -rf __MACOSX