Help for this page

Select Code to Download


  1. or download this
    sub inefficient_qx
    {
    ...
            return $tmp;
        }
    }
    
  2. or download this
    > perl -E 'open my $pipe,"-|","pstree --ascii --arguments --long $$ 1>
    +&2" or die $!;'
    perl -E open my $pipe,"-|","pstree --ascii --arguments --long $$ 1>&2"
    + or die $!;
      `-sh -c pstree --ascii --arguments --long 22176 1>&2
          `-pstree --ascii --arguments --long 22176
    >
    
  3. or download this
    > perl -E 'open my $pipe,"-|","pstree --ascii --arguments --long $$ 1>
    +&2","dummy" or die $!;'
    No such file or directory at -e line 1.
    >
    
  4. or download this
    > perl -E 'system("pstree --ascii --arguments --long $$ 1>&2")==0 or d
    +ie $!'
    perl -E system("pstree --ascii --arguments --long $$ 1>&2")==0 or die 
    +$!
    ...
    No such file or directory at -e line 1.
    
    >
    
  5. or download this
    > perl -E '@list=("pstree --ascii --arguments --long $$ 1>&2"); system
    + { $list[0] } @list and die $!'
    No such file or directory at -e line 1.
    ...
    No such file or directory at -e line 1.
    
    >