Update cheatsheets

This commit is contained in:
ivuorinen
2026-03-03 00:28:02 +00:00
parent d8f280b652
commit 96131996f2
4 changed files with 47 additions and 4 deletions

View File

@@ -13,6 +13,10 @@ source: https://github.com/tldr-pages/tldr.git
`Invoke-WebRequest {{http://example.com}} -OutFile {{path o ile}}`
- Only return raw HTML data instead of parsing it under Internet Explorer (PowerShell 3.0-5.1 only):
`Invoke-WebRequest {{http://example.com}} -UseBasicParsing`
- Send form-encoded data (POST request of type `application/x-www-form-urlencoded`):
`Invoke-WebRequest -Method Post -Body @{ name='bob' } {{http://example.com/form}}`