Help for this page

Select Code to Download


  1. or download this
    my $stdout_one = `sh shellscript.sh`;
    my $stdout_two = qx/sh shellscript.sh/;
    print "This never happens" if ($stdout_one ne $stdout_two);
    print "This always happens" if ($stdout_one eq $stdout_two);