6 lines
124 B
Bash
6 lines
124 B
Bash
#!/bin/bash
|
|
while read LINE; do
|
|
curl -o /dev/null --silent --head --write-out '%{http_code}' "$LINE"
|
|
echo " $LINE"
|
|
done
|