Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    WIFEXITED( (system '/bin/true') >> 8 ) or die "true $!";
    
    WIFEXITED( (system '/bin/false') >> 8 ) or die "false: $!";
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    system '/bin/true';
    
    system '/bin/false';