2 Jan
2006
2 Jan
'06
10:22 a.m.
Taco Hoekwater wrote:
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.
ok