mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-07 06:57:05 +00:00
Update cheatsheets
This commit is contained in:
21
cut
Normal file
21
cut
Normal file
@@ -0,0 +1,21 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# cut
|
||||
|
||||
> Cut out fields from `stdin` or files.
|
||||
> More information: <https://www.gnu.org/software/coreutils/cut>.
|
||||
|
||||
- Print a specific character/field range of each line:
|
||||
|
||||
`{{command}} | cut --{{characters|fields}}={{1|1,10|1-10|1-|-10}}`
|
||||
|
||||
- Print a field range of each line with a specific delimiter:
|
||||
|
||||
`{{command}} | cut --delimiter="{{,}}" --fields={{1}}`
|
||||
|
||||
- Print a character range of each line of the specific file:
|
||||
|
||||
`cut --characters={{1}} {{path/to/file}}`
|
||||
Reference in New Issue
Block a user