8 lines
162 B
Bash
Executable File
8 lines
162 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Downloads
|
|
if [ ! -f lichess_db_eval.jsonl ]; then
|
|
wget https://database.lichess.org/lichess_db_eval.jsonl.zst
|
|
zstd -d lichess_db_eval.jsonl.zst
|
|
fi
|