Script to check redirects

This commit is contained in:
Adam Schmideg 2019-03-26 16:24:07 +01:00
parent 161b15f9e4
commit aef166e300
1 changed files with 24 additions and 0 deletions

24
bin/check_redirect.sh Executable file
View File

@ -0,0 +1,24 @@
#!/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