2014-03-07 17:43:18 +00:00
|
|
|
# cut
|
|
|
|
|
2022-12-04 07:53:34 +00:00
|
|
|
> Cut out fields from `stdin` or files.
|
2021-04-01 16:54:26 +01:00
|
|
|
> More information: <https://www.gnu.org/software/coreutils/cut>.
|
2014-03-07 17:43:18 +00:00
|
|
|
|
2024-05-05 10:08:28 +01:00
|
|
|
- Print a specific [c]haracter/[f]ield range of each line:
|
2014-03-07 17:43:18 +00:00
|
|
|
|
2024-04-18 19:38:25 +01:00
|
|
|
`{{command}} | cut --{{characters|fields}} {{1|1,10|1-10|1-|-10}}`
|
2014-03-07 17:43:18 +00:00
|
|
|
|
2024-05-05 10:08:28 +01:00
|
|
|
- Print a [f]ield range of each line with a specific [d]elimiter:
|
2014-03-07 17:43:18 +00:00
|
|
|
|
2024-05-04 08:32:33 +01:00
|
|
|
`{{command}} | cut --delimiter "{{,}}" --fields {{1}}`
|
2014-03-07 17:43:18 +00:00
|
|
|
|
2024-05-05 10:08:28 +01:00
|
|
|
- Print a [c]haracter range of each line of the specific file:
|
2014-03-07 17:43:18 +00:00
|
|
|
|
2024-04-18 19:38:25 +01:00
|
|
|
`cut --characters {{1}} {{path/to/file}}`
|
2024-05-05 10:08:28 +01:00
|
|
|
|
|
|
|
- Print specific [f]ields of `NUL` terminated lines (e.g. as in `find . -print0`) instead of newlines:
|
|
|
|
|
|
|
|
`{{command}} | cut --zero-terminated --fields {{1}}`
|