Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

curl time response

# -s, --silent
# Silent  or  quiet  mode.  
# Don't  show progress meter or error messages.  
# Makes Curl mute. 
# It will still output the data you ask for.
curl 
        --output /dev/null 
        --silent 
        --write-out '%{time_namelookup}' 
        https://google.com
Source by ops.tips #
 
PREVIOUS NEXT
Tagged: #curl #time #response
ADD COMMENT
Topic
Name
9+6 =