2016-01-05 21:47:20 +00:00
|
|
|
# read
|
|
|
|
|
2023-07-07 04:26:30 +01:00
|
|
|
> Shell builtin for retrieving data from `stdin`.
|
2021-10-13 07:22:50 +01:00
|
|
|
> More information: <https://manned.org/read.1p>.
|
2016-01-05 21:47:20 +00:00
|
|
|
|
|
|
|
- Store data that you type from the keyboard:
|
|
|
|
|
|
|
|
`read {{variable}}`
|
|
|
|
|
2022-11-23 11:05:31 +00:00
|
|
|
- Do not let backslash (\\) act as an escape character:
|
2017-11-29 09:05:52 +00:00
|
|
|
|
|
|
|
`read -r {{variable}}`
|
2019-01-23 13:37:43 +00:00
|
|
|
|
2022-12-04 07:53:34 +00:00
|
|
|
- Read `stdin` and perform an action on every line:
|
2021-02-13 20:03:16 +00:00
|
|
|
|
|
|
|
`while read line; do echo "$line"; done`
|