system $shell, '-c', $_;
Recall:
$shell
contains the name of the
shell that you determined to use.
-c
tells the shell to just run the command in the
following argument.
$_
holds the command; it is the last thing read from
<>
.
$?
in some
form, in case later psh
commands wish to make use of it.