Retry on failure curl
Retry up to 5 times with 2s delay on any error
curl --retry 5 --retry-delay 2 --retry-all-errors https://api.example.com/healthz
more curl
all 21 commands →
POST form data
curl -d 'user=alice&pass=secret' -X POST https://auth.example.com/login
Client certificate auth
curl --cert client.crt --key client.key --cacert ca.crt https://secure.example.com
Parallel downloads with xargs
cat urls.txt | xargs -P 5 -I{} curl -sSL -o /dev/null -w '%{url_effective} %{http_code}\n' {}
WebSocket handshake test
curl -i -N -H 'Upgrade: websocket' -H 'Connection: Upgrade' -H 'Sec-WebSocket-Key: x3JJHMbDL1EzLkh9GBhXDw==' -H 'Sec-WebSocket-Version: 13' http://localhost:8080/ws
Rate-limit download speed
curl --limit-rate 1M -O https://example.com/bigfile.iso