mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-15 23:55:52 +02:00
head: add Spanish translation (#15562)
This commit is contained in:
parent
61de0cadb1
commit
1b26fd3546
1 changed files with 20 additions and 0 deletions
20
pages.es/linux/head.md
Normal file
20
pages.es/linux/head.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# head
|
||||
|
||||
> Muestra la primera parte de los archivos.
|
||||
> Más información: <https://www.gnu.org/software/coreutils/manual/html_node/head-invocation.html>.
|
||||
|
||||
- Muestra las primeras líneas de un archivo:
|
||||
|
||||
`head --lines {{cuenta}} {{ruta/al/archivo}}`
|
||||
|
||||
- Muestra los primeros bits de un archivo:
|
||||
|
||||
`head --bytes {{cuenta}} {{ruta/al/archivo}}`
|
||||
|
||||
- Muestra todo el contenido de un archivo excepto las últimas líneas:
|
||||
|
||||
`head --lines -{{cuenta}} {{ruta/al/archivo}}`
|
||||
|
||||
- Muestra todo el contenido de un archivo excepto los últimos bits:
|
||||
|
||||
`head --bytes -{{cuenta}} {{ruta/al/archivo}}`
|
Loading…
Add table
Reference in a new issue