Help for this page

Select Code to Download


  1. or download this
    system($command, @arguments);
    
    # For example:
    system( "sh", "script.sh", "--help" );
    system("sh script.sh --help");
    
  2. or download this
    my $output = `script.sh --option`;
    my $output = qx/script.sh --option/;