You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
perl -e 'for my $file (@ARGV) { next unless -f $file; my $max = 0; open my $fh, "<", $file or next; while (<$fh>) { chomp; $max = length if length > $max } close $fh; print "$file $max\n" }'