1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-23 02:44:14 +02:00

added missing closing backticks

This commit is contained in:
Cvetomir Denchev 2016-01-26 11:52:58 +02:00
parent b0d9304892
commit 526bc1aaba

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}}`