31 Dec
2005
31 Dec
'05
9:04 a.m.
David Arnold wrote:
I am pretty sure it used to work that way. I can remember compiling with something like:
mptopdf filename.*
I double-checked. This works: $ mptopdf 'filename.*' because mptopdf expands the pattern itself. I've make a one-line change so the quotes are no longer needed: 40c40 < my $pattern = $ARGV[0] ; ---
my $pattern = "@ARGV" ;
Should be a harmless change. Chees, Taco