Describe __PACKAGE__ in perldelta
[p5sagit/p5-mst-13.2.git] / win32 / config_sh.PL
1 my %opt;
2 while (@ARGV && $ARGV[0] =~ /^([\w_]+)=(.*)$/)
3  {
4   $opt{$1}=$2;
5   shift(@ARGV);
6  }
7 while (<>)
8  {
9   s/~([\w_]+)~/$opt{$1}/g;
10   $_ = "$1='$opt{$1}'\n" if (/^([\w_]+)=/ && exists($opt{$1}));
11   print;
12  }
13