more: add examples and link (#5881)

fix-hunspell-typos-042721
Axel Navarro 2021-05-06 09:27:15 -03:00 committed by GitHub
parent f6ecd4e007
commit e30eecd7a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 3 deletions

View File

@ -7,6 +7,14 @@
`more {{ruta/al/archivo}}` `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: - Avanza hacia la siguiente página:
`<Espacio>` `<Espacio>`
@ -18,3 +26,7 @@
- Salir: - Salir:
`q` `q`
- Muestra la ayuda sobre comandos interactivos:
`h`

View File

@ -1,12 +1,21 @@
# more # 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: - 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>` `<Space>`
@ -17,3 +26,7 @@
- Exit: - Exit:
`q` `q`
- Display help about interactive commands:
`h`