Skip to content

Commit

Permalink
Remove "" from command line args
Browse files Browse the repository at this point in the history
  • Loading branch information
Perl 5 Porters authored and Charles Bailey committed Apr 28, 1996
1 parent 0414b1a commit 07f049c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vms/writemain.pl
Expand Up @@ -40,8 +40,10 @@
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) {
Expand Down

0 comments on commit 07f049c

Please sign in to comment.