Remove "" from command line args
Perl 5 Porters [Sun, 28 Apr 1996 23:25:51 +0000 (23:25 +0000)]
vms/writemain.pl

index eb059f8..5f1c8bf 100644 (file)
@@ -40,8 +40,10 @@ xs_init()
 EOH
 
 if (@ARGV) {
+  $names = join(' ',@ARGV);
+  $names =~ tr/"//d;  # Plan9 doesn't remove "" on command line
   # Allow for multiple names in one quoted group
-  @exts = split(/\s+/, join(' ',@ARGV));
+  @exts = split(/\s+/,$names);
 }
 
 if (@exts) {