Help for this page

Select Code to Download


  1. or download this
    system('cmd foo bar &')
    
  2. or download this
    system('/bin/sh', '-c', 'cmd foo bar &')
    
  3. or download this
    system('/bin/sh', '-c', '"$@" &', 'dummy', $prog, @args);
    
  4. or download this
    use String::ShellQuote qw( shell_quote );
    
    system(shell_quote($prog, @args) . ' &'));