How to print third column to last column?

前端 未结 19 2090
面向向阳花
面向向阳花 2020-11-28 18:44

I\'m trying to remove the first two columns (of which I\'m not interested in) from a DbgView log file. I can\'t seem to find an example that prints from column 3 onwards unt

19条回答
  •  野性不改
    2020-11-28 18:51

    awk '{ print substr($0, index($0,$3)) }'
    

    solution found here:
    http://www.linuxquestions.org/questions/linux-newbie-8/awk-print-field-to-end-and-character-count-179078/

提交回复
热议问题