6 lines
151 B
Bash
Executable file
6 lines
151 B
Bash
Executable file
#!/bin/bash
|
|
|
|
for file in lmdb.h mdb.c midl.h midl.c; do
|
|
curl -O https://raw.githubusercontent.com/LMDB/lmdb/mdb.master/libraries/liblmdb/$file
|
|
done
|
|
|