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