mirror of https://github.com/ethereum/go-ethereum
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.
24 lines
767 B
24 lines
767 B
#!/bin/sh
|
|
|
|
urls=(
|
|
"http://geth.ethereum.org"
|
|
"https://geth.ethereum.org"
|
|
"http://geth.ethereum.org/"
|
|
"https://geth.ethereum.org/"
|
|
"http://geth.ethereum.org/install"
|
|
"https://geth.ethereum.org/install"
|
|
"http://geth.ethereum.org/install/"
|
|
"https://geth.ethereum.org/install/"
|
|
"http://ethereum.github.io/go-ethereum"
|
|
"https://ethereum.github.io/go-ethereum"
|
|
"http://ethereum.github.io/go-ethereum/"
|
|
"https://ethereum.github.io/go-ethereum/"
|
|
"http://ethereum.github.io/go-ethereum/install"
|
|
"https://ethereum.github.io/go-ethereum/install"
|
|
"http://ethereum.github.io/go-ethereum/install/"
|
|
"https://ethereum.github.io/go-ethereum/install/"
|
|
)
|
|
for u in "${urls[@]}"
|
|
do
|
|
echo "$u -> $(curl $u -w --silent -I 2>&1 | grep Location)"
|
|
done
|
|
|