Update cheatsheets

This commit is contained in:
ivuorinen
2025-11-06 00:20:12 +00:00
parent 22576ac740
commit ce31a6d914
16 changed files with 168 additions and 14 deletions

View File

@@ -32,3 +32,7 @@ source: https://github.com/tldr-pages/tldr.git
- Print the exit status of the last executed command (Note: In Windows Command Prompt and PowerShell the equivalent commands are `echo %errorlevel%` and `$lastexitcode` respectively):
`echo $?`
- Pass text to another program through `stdin`:
`echo "{{Hello World}}" | {{program}}`