Help for this page

Select Code to Download


  1. or download this
    perl -Mstrict -wne'print "$1\n" while /\B(-I\S+)/g;' infile
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    while(<>) {
        print "$1\n" while /\B(-I\S+)/g;
    }