bat: add more information link (#4785)

* bat: add Spanish translation

* bat: add suggestions

Co-authored-by: Axel Navarro <navarroaxel@gmail.com>

* bat: add filename suggestions

Co-authored-by: Axel Navarro <navarroaxel@gmail.com>

* bat: add page

* bat: add page (en)

* bat: fix empty line

Co-authored-by: Axel Navarro <navarroaxel@gmail.com>
beep
Agustín Covarrubias 2020-10-24 09:45:49 -03:00 committed by GitHub
parent 25adf84c03
commit 51c0dd2ba4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

29
pages.es/common/bat.md Normal file
View File

@ -0,0 +1,29 @@
# bat
> Imprime y concatena archivos.
> Un clon de `cat` con resaltado de sintaxis e integración con Git.
> Más información: <https://github.com/sharkdp/bat>.
- Imprime los contenidos de un archivo a la salida estándar:
`bat {{archivo}}`
- Concatena varios archivos creando un nuevo archivo:
`bat {{archivo1}} {{archivo2}} > {{archivo_final}}`
- Añade múltiples archivos al final de un archivo objetivo:
`bat {{archivo1}} {{archivo2}} >> {{archivo_final}}`
- Numera las lineas del archivo:
`bat -n {{archivo}}`
- Muestra un archivo JSON con resaltado de sintaxis:
`bat --language json {{archivo.json}}`
- Muestra todos los lenguajes permitidos:
`bat --list-languages`

View File

@ -2,6 +2,7 @@
> Print and concatenate files.
> A `cat` clone with syntax highlighting and Git integration.
> More information: <https://github.com/sharkdp/bat>.
- Print the contents of a file to the standard output: