Unix cut, remove first token Unix cut, remove first token unix unix

Unix cut, remove first token


cut -d' ' -f3-

-d' ' might be required.


cut -f3-

[Body is too short? Is that new?]


I tried the answer cut -d' '-f3- but it did not exclude the field. The below command worked though. I am using Linux SLES.

cut -d' ' -f3 --complement

Reference link https://www.commandlinefu.com/commands/view/6867/exclude-a-column-with-cut

Happy to be corrected and learn. Thank you.