2022-06-26 19:37:05 +01:00
|
|
|
# cut
|
|
|
|
|
2022-12-04 07:53:34 +00:00
|
|
|
> Cut out fields from `stdin` or files.
|
2024-01-31 10:20:27 +00:00
|
|
|
> More information: <https://keith.github.io/xcode-man-pages/cut.1.html>.
|
2022-06-26 19:37:05 +01:00
|
|
|
|
|
|
|
- Print a specific character/field range of each line:
|
|
|
|
|
|
|
|
`{{command}} | cut -{{c|f}} {{1|1,10|1-10|1-|-10}}`
|
|
|
|
|
2024-01-08 19:04:20 +00:00
|
|
|
- Print a field range of each line with a specific delimiter:
|
2022-06-26 19:37:05 +01:00
|
|
|
|
2024-01-08 19:04:20 +00:00
|
|
|
`{{command}} | cut -d "{{,}}" -f {{1}}`
|
2022-06-26 19:37:05 +01:00
|
|
|
|
2024-01-08 19:04:20 +00:00
|
|
|
- Print a character range of each line of a specific file:
|
2022-06-26 19:37:05 +01:00
|
|
|
|
2024-01-08 19:04:20 +00:00
|
|
|
`cut -c {{1}} {{path/to/file}}`
|