Files
avo/examples/stadtx/fork.sh

18 lines
456 B
Bash
Raw Normal View History

2018-12-19 22:32:45 -08:00
#!/bin/bash -ex
dl() {
url=$1
filename=$(basename $1)
2018-12-19 22:32:45 -08:00
{
2019-01-13 10:12:52 -08:00
echo "// Code generated by downloading from ${url}. DO NOT EDIT."
2018-12-19 22:32:45 -08:00
echo
curl -L ${url}
} > ${filename}
}
baseurl='https://github.com/dgryski/go-stadtx/raw/3c3d9b328c24a9b5ecd370654cd6e9d60a85752d'
dl ${baseurl}/stadtx.go
dl ${baseurl}/stadtx_test.go
dl 'https://raw.githubusercontent.com/demerphq/BeagleHash/5f8620b953230e5b16171b745155fc3b0ef8f75e/LICENSE'