projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
0414b1a
)
Remove "" from command line args
Perl 5 Porters [Sun, 28 Apr 1996 23:25:51 +0000 (23:25 +0000)]
vms/writemain.pl
patch
|
blob
|
blame
|
history
diff --git
a/vms/writemain.pl
b/vms/writemain.pl
index
eb059f8
..
5f1c8bf
100644
(file)
--- a/
vms/writemain.pl
+++ b/
vms/writemain.pl
@@
-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) {