Help for this page

Select Code to Download


  1. or download this
      system("cmd $with $some $args")
    
  2. or download this
    system("/bin/ls");   # run /bin/ls with no arguments
    
  3. or download this
    system($cmd);        # run the $cmd command with no arguments
    
  4. or download this
    system {$cmd}, $cmd;
    
  5. or download this
    system($cmd, $with, $some, $args);
    
  6. or download this
    system($cmd, @args);