Skip to content

Instantly share code, notes, and snippets.

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

Mahesh Kariya itsmaheshkariya

🏠
Working from home
View GitHub Profile
@itsmaheshkariya
itsmaheshkariya / curl.md
Created June 2, 2020 08:53 — 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.

@itsmaheshkariya
itsmaheshkariya / sed cheatsheet
Created January 19, 2021 19:35 — forked from freewind/sed cheatsheet
magic of sed -- find and replace "text" in a string or a file
FILE SPACING:
# double space a file
sed G
# double space a file which already has blank lines in it. Output file
# should contain no more than one blank line between lines of text.
sed '/^$/d;G'