curl speed test

#!/bin/bash

test ! -e /tmp/curl.format && cat > /tmp/curl.format <<EOF
   time_namelookup: %{time_namelookup}s\n 
      time_connect: %{time_connect}s\n
   time_appconnect: %{time_appconnect}s\n 
  time_pretransfer: %{time_pretransfer}s\n
     time_redirect: %{time_redirect}s\n 
time_starttransfer: %{time_starttransfer}s\n
 ----------\n 
time_total: %{time_total}s\n
EOF

curl -L -s -w "@/tmp/curl.format" $url_here

Leave a comment