Help for this page

Select Code to Download


  1. or download this
    system('cat foo bar');     # Cats 'foo' and 'bar'
    system('cat', 'foo bar');  # Cats 'foo bar'
    
    system('some command');                     # Executes 'some'
    system({ 'some command' } 'some command');  # Executes 'some command'