- or download this
my @args = ("start",$file,$file);
- or download this
for (@args) {
# Apply smart-ish double quotes
if (/ /) { $_ = qq{"$_"}; }
};
- or download this
$_ = '"' . $_ . '"';
# or
$_ = "\"$_\"";
- or download this
system(@args) == 0
or warn "Couldn't launch '$file' : $!/$?/$^E";