Help for this page
while (<>) { print if tr/:// >= 3; # Special use of tr to count column separato +rs }
while (<>) { my @cols = split; print if @cols >= 4; }