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
use strict; use warnings use String::FixedLen; tie my $str, 'String::FixedLen', 4; while (defined($str = <>)) { chomp; print "$str\n"; }