2016-01-05 23:47:20 +02:00
|
|
|
# read
|
|
|
|
|
2016-01-26 11:52:58 +02:00
|
|
|
> BASH builtin for retrieving data from standard input.
|
2016-01-05 23:47:20 +02: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 11:52:58 +02:00
|
|
|
`read -a {{array}}`
|
2016-01-05 23:47:20 +02:00
|
|
|
|
|
|
|
- Specify the number of maximum characters to be read:
|
|
|
|
|
2016-01-26 11:52:58 +02:00
|
|
|
`read -n {{character_count}} {{variable}}`
|
2016-01-05 23:47:20 +02:00
|
|
|
|
|
|
|
- Use a specific character as a delimiter instead of a new line:
|
2016-01-26 11:46:05 +02:00
|
|
|
|
2016-01-27 10:19:21 +02:00
|
|
|
`read -d {{new_delimiter}} {{variable}}`
|
2017-11-29 10:05:52 +01:00
|
|
|
|
|
|
|
- Do not let backslash (\) act as an escape character:
|
|
|
|
|
|
|
|
`read -r {{variable}}`
|
2019-01-23 14:37:43 +01:00
|
|
|
|
|
|
|
- Display a prompt before the input:
|
|
|
|
|
2020-10-04 19:33:38 +02:00
|
|
|
`read -p "{{Enter your input here: }}" {{variable}}`
|
2019-01-26 17:10:00 -07:00
|
|
|
|
|
|
|
- Do not echo typed characters (silent mode):
|
|
|
|
|
|
|
|
`read -s {{variable}}`
|
2021-02-13 21:03:16 +01:00
|
|
|
|
|
|
|
- Read stdin and perform an action on every line:
|
|
|
|
|
|
|
|
`while read line; do echo "$line"; done`
|