tldr/pages/common/cut.md

28 lines
619 B
Markdown
Raw Normal View History

2014-03-07 17:43:18 +00:00
# cut
> Cut out fields from STDIN or files
2014-03-07 17:43:18 +00:00
- Cut out the first sixteen characters of each line of STDIN
`cut -c {{1-16}}`
2014-03-07 17:43:18 +00:00
- Cut out the first sixteen characters of each line of the given files
2014-03-07 17:43:18 +00:00
`cut -c {{1-16}} {{file}}`
2014-03-07 17:43:18 +00:00
- Cut out everything from the 3rd character to the end of each line
2014-03-07 17:43:18 +00:00
`cut -c{{3-}}`
2014-03-07 17:43:18 +00:00
- Cut out the fifth field, split on the colon character of each line
2014-03-07 17:43:18 +00:00
`cut -d'{{:}}' -f{{5}}`
2014-03-07 17:43:18 +00:00
- Cut out the fields five and 10, split on the colon character of each line
2014-03-07 17:43:18 +00:00
`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}}`