unix cut, remove first token
- by Mike
I'm trying to use unix cut to remove the first two fields per line. I have input lines of of the form
(token)(whitespace)(token)(lots of text)
The problem is that there exit n tokens per line, so I can't do something like this
cut -f3,4,5,6,7,8,9
is there a way to tell cut to take everything except the specified fields