cut: refresh and add page (#7930)

This commit is contained in:
Emily Grace Seville
2022-06-27 04:37:05 +10:00
committed by GitHub
parent 337c1c06d0
commit 4b9caaea84
2 changed files with 22 additions and 18 deletions

16
pages/osx/cut.md Normal file
View File

@@ -0,0 +1,16 @@
# cut
> Cut out fields from stdin or files.
> More information: <https://manned.org/man/freebsd-13.0/cut.1>.
- Print a specific character/field range of each line:
`{{command}} | cut -{{c|f}} {{1|1,10|1-10|1-|-10}}`
- Print a range of each line with a specific delimiter:
`{{command}} | cut -d "{{,}}" -{{c}} {{1}}`
- Print a range of each line of a specific file:
`cut -{{c}} {{1}} {{path/to/file}}`