How to truncate STDIN line length?

前端 未结 9 1809
醉酒成梦
醉酒成梦 2021-01-05 07:15

I\'ve been parsing through some log files and I\'ve found that some of the lines are too long to display on one line so Terminal.app kindly wraps them onto the next line. Ho

9条回答
  •  失恋的感觉
    2021-01-05 07:37

    Not exactly answering the question, but if you want to stick with Perl and use a one-liner, a possibility is:

    $ perl -pe's/(?<=.{25}).*//' filename
    

    where 25 is the desired line length.

提交回复
热议问题