Help for this page

Select Code to Download


  1. or download this
        #!/usr/bin/perl
        use strict;
    ...
            and not $nets{$1}++ 
            and print "$1\n" 
          while <STDIN>;
    
  2. or download this
        #!/usr/bin/perl
        use strict;
    ...
        /$nets/
            or print
          while <STDIN>;
    
  3. or download this
        perl script1.pl < file1 > file2
        perl script2.pl file2 < another-file
    
  4. or download this
        #!/usr/bin/perl
        use strict;
    ...
        /$nets/
            or print
          while <STDIN>;
    
  5. or download this
        perl script1+2.pl file1 < another-file