Help for this page

Select Code to Download


  1. or download this
    #!/bin/bash
    
    echo "foo"
    
    exit 101
    
  2. or download this
    my $cmd = "myscript.sh";
    my $content = `$cmd`;
    ...
    
    print "Content: $content\n";
    print "Exit Code:  $exitcode\n";