1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/cut.md

21 lines
724 B
Markdown
Raw Normal View History

2014-03-07 11:43:18 -06:00
# cut
> Cut out fields from `stdin` or files.
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/cut-invocation.html>.
2014-03-07 11:43:18 -06:00
2024-05-05 19:08:28 +10:00
- Print a specific [c]haracter/[f]ield range of each line:
2014-03-07 11:43:18 -06:00
`{{command}} | cut --{{characters|fields}} {{1|1,10|1-10|1-|-10}}`
2014-03-07 11:43:18 -06:00
2025-03-17 23:17:57 +02:00
- Print a field range of each line with a specific delimiter:
2014-03-07 11:43:18 -06:00
2025-03-17 23:17:57 +02:00
`{{command}} | cut {{[-d|--delimiter]}} "{{delimiter}}" {{[-f|--fields]}} {{1|1,10|1-10|1-|-10}}`
2014-03-07 11:43:18 -06:00
2025-03-17 23:17:57 +02:00
- Print a character range of each line of the specific file:
2014-03-07 11:43:18 -06:00
2025-03-17 23:17:57 +02:00
`cut {{[-c|--characters]}} {{1}} {{path/to/file}}`
2024-05-05 19:08:28 +10:00
2025-03-17 23:17:57 +02:00
- Print specific fields of `NUL` terminated lines (e.g. as in `find . -print0`) instead of newlines:
2024-05-05 19:08:28 +10:00
2025-03-17 23:17:57 +02:00
`{{command}} | cut {{[-z|--zero-terminated]}} {{[-f|--fields]}} {{1}}`