Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    
    ...
    # print the resulting list of missing processes
    
    print map "NF: $_\n", @missing;
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
        /oasis/bin/sysmenu
        /oasis/bin/TS_TextSrvcs
    );
    
  3. or download this
    my %procs = map { chomp; $_ => undef } qx/ps -a ho comm/;