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

29 lines
767 B
Markdown
Raw Normal View History

2014-03-07 11:43:18 -06:00
# cut
> Cut out fields from stdin or files.
2021-03-30 13:39:27 +02:00
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/cut-invocation.html>.
2014-03-07 11:43:18 -06:00
- Cut out the first sixteen characters of each line of stdin:
2014-03-07 11:43:18 -06:00
`cut -c {{1-16}}`
2014-03-07 11:43:18 -06:00
- Cut out the first sixteen characters of each line of the given files:
2014-03-07 11:43:18 -06:00
`cut -c {{1-16}} {{file}}`
2014-03-07 11:43:18 -06:00
- Cut out everything from the 3rd character to the end of each line:
2014-03-07 11:43:18 -06:00
`cut -c {{3-}}`
2014-03-07 11:43:18 -06:00
- Cut out the fifth field of each line, using a colon as a field delimiter (default delimiter is tab):
2014-03-07 11:43:18 -06:00
`cut -d'{{:}}' -f{{5}}`
2014-03-07 11:43:18 -06:00
- Cut out the 2nd and 10th fields of each line, using a semicolon as a delimiter:
2014-03-07 11:43:18 -06:00
`cut -d'{{;}}' -f{{2,10}}`
- Cut out the fields 3 through to the end of each line, using a space as a delimiter:
`cut -d'{{ }}' -f{{3-}}`