linux - Curl command without using cache -
is there way tell curl command not use server's side cache? e.g; have curl command:
curl -v www.example.com
how can ask curl send fresh request not use cache?
note: looking executable command in terminal.
i know older question, wanted post answer users same question:
curl -h 'cache-control: no-cache' http://www.example.com
this curl command servers in header request return non-cached data web server.
Comments
Post a Comment