Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    while (<$f>) {
        print "$1\n" if /(#.*)$/;
    }
    
  2. or download this
    grep \# /etc/services | cut -f2 -d#