Help for this page

Select Code to Download


  1. or download this
    my @i ;
    #        usern      pid     ?  ? startt   ?          ?     command
    ...
        print join ' | ', map { defined() ? $_ : 'undef' } @proc;
        print "\n";
    }
    
  2. or download this
    wwwrun | 17275 | 2006 | undef | undef | undef | undef | /usr/sb...
    root | 3826 | undef | undef | undef | Jan08 | undef | su -
    root | 3826 | undef | undef | undef | undef | Jan 08 | su -
    root | 3547 | undef | 06:49 | undef | undef | undef | zmd /us...
    root | 3547 | undef | undef | 06:49:12 | undef | undef | zmd /us...
    
  3. or download this
    foreach ( @i ) {
      my @proc = /^
    ...
        print join ' | ', @proc;
        print "\n";
    }
    
  4. or download this
    wwwrun | 17275 | 2006 | /usr/sb...
    root | 3826 | Jan08 | su -
    root | 3826 | Jan 08 | su -
    root | 3547 | 06:49 | zmd /us...
    root | 3547 | 06:49:12 | zmd /us...