Curl tutorials and examples

curl – some handy commands

Command line utility curl (on Linux, Mac and other operating systems) is pretty handy tool for web developers and can be used to multiple activities. read more

Curl – follow redirects

Curl is fairly handy command line utility to fetch a web page. It can also be used to automate various tasks in bash shell scripts. read more

Curl – how to hide progress bar

Curl by default shows progress bar. To hide it -s option can be used. We can also add -S to show errors when -s option read more

Curl with download/upload rate limit – code snippets

Curl with rate limit (both download and upload bandwidth) to 1 KBps (1 kilobytes per second) $ curl –limit-rate 1K https://infoheap.com/ > out.html // or read more