1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/osx/cut.md

17 lines
427 B
Markdown
Raw Normal View History

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