Update cheatsheets

This commit is contained in:
ivuorinen
2024-08-05 00:16:08 +00:00
parent 680f252b67
commit 06b7c53756
4 changed files with 9 additions and 5 deletions

View File

@@ -16,6 +16,6 @@ source: https://github.com/tldr-pages/tldr.git
`read -r {{variable}}`
- Read `stdin` and perform an action on every line:
- Read `stdin` or file and perform an action on every line:
`while read line; do echo "$line"; done`
`while read line; do {{echo|ls|rm|...}} "$line"; done < {{/dev/stdin|path/to/file|...}}`