read: edit page (#13352)

This commit is contained in:
Fazle Arefin 2024-08-04 20:19:32 +10:00 committed by GitHub
parent 9be7b41bdb
commit 6f0488d666
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,6 +11,6 @@
`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|...}}`