9951 explained code solutions for 126 technologies


curlGet time request took to proceed


curl -o /dev/null -s -w "%{time_total}s\n" https://onelinerhub.comctrl + c
curl

base curl command

-o /dev/null

will ask curl to skip response body

-w

will ask curl to display specified data about request

%{time_total}

will show total time it took request to process (in seconds)

https://onelinerhub.com

sample URL to request