Help for this page

Select Code to Download


  1. or download this
    # change this:
        $defines{$_} =~ s/<(\w+)>/$defines{$1}/g;
    ...
    # to this:
        1 while $defines{$_} =~ s/<(\w+)>/$defines{$1}/g;
    
  2. or download this
        #!/usr/bin/perl -w
        use strict;
    ...
        my $file = $opts->{FILE};
        print "$file\n";