Help for this page

Select Code to Download


  1. or download this
    #Look only at the summary lines where $_ == 560
    while (defined ($_ = <FILE>)) {
    ...
        $_ =~ s/`/,/g;      #this is here to get the user name because ' i
    +s after name
        @x=split(/,/);
        if (!($x[16] =~ /Primary User Name:    CISERFS1/)) {  #dont want t
    +he details from the sytem
    
  2. or download this
    #Look only at the summary lines where $x[???] contains '560'
    while (<FILE>) {
        @x=split /,|`/;
        next unless ($x[???] =~ /560/);  #we only want the files with 560
        unless($x[16] =~ /Primary User Name:    CISERFS1/) {  #dont want t
    +he details from the sytem