mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
more: add examples and link (#5881)
This commit is contained in:
parent
f6ecd4e007
commit
e30eecd7a0
2 changed files with 28 additions and 3 deletions
|
@ -7,6 +7,14 @@
|
|||
|
||||
`more {{ruta/al/archivo}}`
|
||||
|
||||
- Abre un archivo mostrando desde una línea especifica:
|
||||
|
||||
`more +{{numero_linea}} {{ruta/al/archivo}}`
|
||||
|
||||
- Muestra la ayuda:
|
||||
|
||||
`more --help`
|
||||
|
||||
- Avanza hacia la siguiente página:
|
||||
|
||||
`<Espacio>`
|
||||
|
@ -18,3 +26,7 @@
|
|||
- Salir:
|
||||
|
||||
`q`
|
||||
|
||||
- Muestra la ayuda sobre comandos interactivos:
|
||||
|
||||
`h`
|
||||
|
|
|
@ -1,12 +1,21 @@
|
|||
# more
|
||||
|
||||
> Open a file for interactive reading, allowing scrolling and search (in forward direction only).
|
||||
> Open a file for interactive reading, allowing scrolling and search.
|
||||
> More information: <https://manned.org/more>.
|
||||
|
||||
- Open a file:
|
||||
|
||||
`more {{source_file}}`
|
||||
`more {{path/to/file}}`
|
||||
|
||||
- Page down:
|
||||
- Open a file displaying from a specific line:
|
||||
|
||||
`more +{{line_number}} {{path/to/file}}`
|
||||
|
||||
- Display help:
|
||||
|
||||
`more --help`
|
||||
|
||||
- Go to the next page:
|
||||
|
||||
`<Space>`
|
||||
|
||||
|
@ -17,3 +26,7 @@
|
|||
- Exit:
|
||||
|
||||
`q`
|
||||
|
||||
- Display help about interactive commands:
|
||||
|
||||
`h`
|
||||
|
|
Loading…
Add table
Reference in a new issue