I am basically looking for something similar but simpler tool like cURL that fetches http header without the body. Not interested downloading the body. Noticed cURL seems to download the body and consumes unnecessary bandwidth for my need
I am basically looking for something similar but simpler tool like cURL that fetches
Share
use the
-Iflag to curl to make it issue aHEADrequest, i.e., just the headers.(not guaranteed to be exactly the same, but is supposed to be)