cut: add Spanish translation (#10569)

* cut: add Spanish translation

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
pull/23/head
Darío Hereñú 2023-08-13 14:49:26 -03:00 committed by GitHub
parent 0401d76f81
commit e0a9d23c8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

16
pages.es/osx/cut.md Normal file
View File

@ -0,0 +1,16 @@
# cortar
> Cortar campos sean `stdin` o archivos.
> Más información: <https://manned.org/man/freebsd-13.0/cut.1>.
- Imprime un rango específico de caracteres/campos de cada línea:
`{{command}} | cut -{{c|f}} {{1|1,10|1-10|1-|-10}}`
- Imprime un rango de cada línea con un delimitador específico:
`{{command}} | cut -d "{{,}}" -{{c}} {{1}}`
- Imprime un rango de cada línea de un archivo específico:
`cut -{{c}} {{1}} {{ruta/al/archivo}}`