2022-06-26 19:37:05 +01:00
|
|
|
# cut
|
|
|
|
|
2022-12-04 07:53:34 +00:00
|
|
|
> Cut out fields from `stdin` or files.
|
2022-06-26 19:37:05 +01:00
|
|
|
> More information: <https://manned.org/man/freebsd-13.0/cut.1>.
|
|
|
|
|
|
|
|
- Print a specific character/field range of each line:
|
|
|
|
|
|
|
|
`{{command}} | cut -{{c|f}} {{1|1,10|1-10|1-|-10}}`
|
|
|
|
|
|
|
|
- Print a range of each line with a specific delimiter:
|
|
|
|
|
|
|
|
`{{command}} | cut -d "{{,}}" -{{c}} {{1}}`
|
|
|
|
|
|
|
|
- Print a range of each line of a specific file:
|
|
|
|
|
|
|
|
`cut -{{c}} {{1}} {{path/to/file}}`
|