mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 22:04:59 +02:00
added missing closing backticks
This commit is contained in:
parent
b0d9304892
commit
526bc1aaba
1 changed files with 8 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
|||
# 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:
|
||||
|
||||
|
@ -8,15 +8,15 @@
|
|||
|
||||
- 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:
|
||||
|
||||
`read -e {{variable}}
|
||||
`read -e {{variable}}`
|
||||
|
||||
- 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:
|
||||
|
||||
|
@ -26,16 +26,16 @@
|
|||
|
||||
- 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
|
||||
|
||||
`read -e {{variable}}
|
||||
`read -e {{variable}}`
|
||||
|
||||
- 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
|
||||
|
||||
`read -d {{delimiter}} {{variable}}
|
||||
`read -d {{delimiter}} {{variable}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue