Help for this page

Select Code to Download


  1. or download this
    while (<>) {
        print if tr/:// >= 3; # Special use of tr to count column separato
    +rs
    }
    
  2. or download this
    while (<>) {
        my @cols = split;
        print if @cols >= 4;
    }