Skip to content

Instantly share code, notes, and snippets.

@atomjoy
Last active August 27, 2026 15:05
Show Gist options
  • Select an option

  • Save atomjoy/3c9f4e8f277318f8498c794b828c5f4a to your computer and use it in GitHub Desktop.

Select an option

Save atomjoy/3c9f4e8f277318f8498c794b828c5f4a to your computer and use it in GitHub Desktop.
Curl no-cache example.

Curl no cache

curl http://https://example.com/main.js?random
curl -H 'Pragma: no-cache' https://example.com/main.js
curl -H 'Cache-Control: no-cache' https://example.com/main.js

Curl show headers

curl -I -H "Accept-Encoding: br" https://example.com

Curl online help

https://reqbin.com/curl

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment