system("cmd $with $some $args") #### system("/bin/ls"); # run /bin/ls with no arguments #### system($cmd); # run the $cmd command with no arguments #### system {$cmd}, $cmd; #### system($cmd, $with, $some, $args); #### system($cmd, @args);
## system("/bin/ls"); # run /bin/ls with no arguments ##
## system($cmd); # run the $cmd command with no arguments ##
## system {$cmd}, $cmd; ##
## system($cmd, $with, $some, $args); ##
## system($cmd, @args);