tldr/pages/common/read.md

37 lines
812 B
Markdown
Raw Normal View History

2016-01-06 00:47:20 +03:00
# read
2016-01-26 12:52:58 +03:00
> BASH builtin for retrieving data from standard input.
> More information: <https://manned.org/read.1p>.
2016-01-06 00:47:20 +03:00
- Store data that you type from the keyboard:
`read {{variable}}`
- Store each of the next lines you enter as values of an array:
2016-01-26 12:52:58 +03:00
`read -a {{array}}`
2016-01-06 00:47:20 +03:00
- Specify the number of maximum characters to be read:
2016-01-26 12:52:58 +03:00
`read -n {{character_count}} {{variable}}`
2016-01-06 00:47:20 +03:00
- Use a specific character as a delimiter instead of a new line:
2016-01-26 12:46:05 +03:00
2016-01-27 11:19:21 +03:00
`read -d {{new_delimiter}} {{variable}}`
2017-11-29 12:05:52 +03:00
- Do not let backslash (\) act as an escape character:
`read -r {{variable}}`
- Display a prompt before the input:
`read -p "{{Enter your input here: }}" {{variable}}`
- Do not echo typed characters (silent mode):
`read -s {{variable}}`
- Read stdin and perform an action on every line:
`while read line; do echo "$line"; done`