Skip to content

Instantly share code, notes, and snippets.

View HumbleSpirit's full-sized avatar
🏠
Working from home

Sergey Borodkin HumbleSpirit

🏠
Working from home
View GitHub Profile
@HumbleSpirit
HumbleSpirit / curl.md
Created September 23, 2021 21:30 — forked from subfuzion/curl.md
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.

@HumbleSpirit
HumbleSpirit / desc_avail_zones
Last active September 27, 2020 09:43
List all AWS availability zones in all regions
aws ec2 describe-regions --query "Regions[].[RegionName]" --out text | xargs -I{} aws --region {} ec2 describe-availability-zones --query "AvailabilityZones[].ZoneName" --out text