Perl Shell - A Solution
@argv = @ARGV;
This line copies any additional command line arguments to
@argv
.
Recall:
psh
is using
@ARGV
so we can't let any input script files use it. By convention,
@argv
is used by any scripts to be run in
psh
.