tldr/pages/common/cut.md

17 lines
461 B
Markdown
Raw Normal View History

2014-03-07 17:43:18 +00:00
# cut
> Cut out fields from `stdin` or files.
> More information: <https://www.gnu.org/software/coreutils/cut>.
2014-03-07 17:43:18 +00:00
2022-06-26 19:37:05 +01:00
- Print a specific character/field range of each line:
2014-03-07 17:43:18 +00:00
2022-06-26 19:37:05 +01:00
`{{command}} | cut --{{characters|fields}}={{1|1,10|1-10|1-|-10}}`
2014-03-07 17:43:18 +00:00
2024-01-08 19:04:20 +00:00
- Print a field range of each line with a specific delimiter:
2014-03-07 17:43:18 +00:00
2024-01-08 19:04:20 +00:00
`{{command}} | cut --delimiter="{{,}}" --fields={{1}}`
2014-03-07 17:43:18 +00:00
2024-01-08 19:04:20 +00:00
- Print a character range of each line of the specific file:
2014-03-07 17:43:18 +00:00
2024-01-08 19:04:20 +00:00
`cut --characters={{1}} {{path/to/file}}`