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

View File

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