Check URLs status and save in a CSV file the result
This is a bash command.
xargs -n1 -P 10 curl -o /dev/null --silent --head --write-out '%{url_effective};%{http_code};%{time_total};%{time_namelookup};%{time_connect};%{size_download};%{speed_download}\n' < url.lst | tee results.csv- url.lst: url list
- results.csv: csv file
code type:
