Script to check redirects

pull/19383/head
Adam Schmideg 6 years ago
parent 161b15f9e4
commit aef166e300
  1. 24
      bin/check_redirect.sh

@ -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
Loading…
Cancel
Save