1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.es/osx/cut.md
Darío Hereñú e0a9d23c8d
cut: add Spanish translation (#10569)
* cut: add Spanish translation

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-08-13 23:19:26 +05:30

453 B

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}}