Help for this page

Select Code to Download


  1. or download this
    @args=qw(command arg1 arg2);
    system(@args);
    
  2. or download this
    ~$ perl -e '@args=qw(echo Hello;echo World);system(@args);'
    Hello;echo World