Help for this page

Select Code to Download


  1. or download this
    @users = qw(fred wilma barney); #watch these users
    foreach $user (@users) {
    ...
            print LOG $_;
        }
    }
    
  2. or download this
    open(LOG, ">>/tmp/$user.logfile");
    open(STDIN, ">&LOG");