mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-01 16:42:35 +00:00
22 lines
517 B
Plaintext
22 lines
517 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, osx]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# cut
|
|
|
|
> Cut out fields from `stdin` or files.
|
|
> More information: <https://keith.github.io/xcode-man-pages/cut.1.html>.
|
|
|
|
- Print a specific character/field range of each line:
|
|
|
|
`{{command}} | cut -{{c|f}} {{1|1,10|1-10|1-|-10}}`
|
|
|
|
- Print a field range of each line with a specific delimiter:
|
|
|
|
`{{command}} | cut -d "{{,}}" -f {{1}}`
|
|
|
|
- Print a character range of each line of a specific file:
|
|
|
|
`cut -c {{1}} {{path/to/file}}`
|