1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 15:17:58 +01:00
tldr/pages/common/cut.md
2014-03-08 12:12:41 +11:00

27 lines
619 B
Markdown

# cut
> Cut out fields from STDIN or files
- Cut out the first sixteen characters of each line of STDIN
`cut -c {{1-16}}`
- Cut out the first sixteen characters of each line of the given files
`cut -c {{1-16}} {{file}}`
- Cut out everything from the 3rd character to the end of each line
`cut -c{{3-}}`
- Cut out the fifth field, split on the colon character of each line
`cut -d'{{:}}' -f{{5}}`
- Cut out the fields five and 10, split on the colon character of each line
`cut -d'{{:}}' -f{{5,10}}`
- Cut out the fields five through 10, split on the colon character of each line
`cut -d'{{:}}' -f{{5-10}}`