added missing closing backticks

waldyrious/alt-syntax
Cvetomir Denchev 2016-01-26 11:52:58 +02:00
parent b0d9304892
commit 526bc1aaba
1 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
# read # read
> BASH builtin for retrieving data from standard input > BASH builtin for retrieving data from standard input.
- Store data that you type from the keyboard: - Store data that you type from the keyboard:
@ -8,15 +8,15 @@
- Store each of the next lines you enter as values of an array: - Store each of the next lines you enter as values of an array:
`read -a {{array}} `read -a {{array}}`
- Enable backspace and GNU readline hotkeys when entering input with read: - Enable backspace and GNU readline hotkeys when entering input with read:
`read -e {{variable}} `read -e {{variable}}`
- Specify the number of maximum characters to be read: - Specify the number of maximum characters to be read:
`read -n {{character_count}} {{variable}} `read -n {{character_count}} {{variable}}`
- Use a specific character as a delimiter instead of a new line: - Use a specific character as a delimiter instead of a new line:
@ -26,16 +26,16 @@
- store each of the next lines you enter as values of an array - store each of the next lines you enter as values of an array
`read -a {{array}} `read -a {{array}}`
- enable backspace and GNU readline hotkeys when entering input with read - enable backspace and GNU readline hotkeys when entering input with read
`read -e {{variable}} `read -e {{variable}}`
- specify the number of maximum characters to be read - specify the number of maximum characters to be read
`read -n {{character_count}} {{variable}} `read -n {{character_count}} {{variable}}`
- use a specific character as a delimiter instead of a new line - use a specific character as a delimiter instead of a new line
`read -d {{delimiter}} {{variable}} `read -d {{delimiter}} {{variable}}`