Help for this page

Select Code to Download


  1. or download this
    system("shell.sh");
    
  2. or download this
    my $results = `shell.sh`;
    if ($results =~ /Hello World/) {
       print "tada!";
    }
    
  3. or download this
    echo "Hello world";