Help for this page

Select Code to Download


  1. or download this
    perl -F: -al0ne '$i||=1;/^n/&&print$i;!/^u/&&print$F[1];/^$/&&$i++&&pr
    +int$/'
    
  2. or download this
    LINE: while (defined($_ = <ARGV>)) {
        chomp $_;
    ...
        print $F[1] if not /^u/;
        print $/ if /^$/ and $i++;
    }
    
  3. or download this
    perl '-F: ' -al0ne '!/^u/&&print qq($F[1] );/^$/&&print$/'