Help for this page

Select Code to Download


  1. or download this
    perl -pibak -e 's/^\s.*//; s/\[\.\]/./g;' filename
    
  2. or download this
    #!/usr/bin/perl
    use warnings;
    ...
        $line =~ s/\[\.\]/./g;
        push @urls, $line;
    }
    
  3. or download this
    #!/usr/bin/perl
    use warnings;
    ...
        s/\[\.\]/./g;
        push @urls, $_;
    }