open(OUT, ">> $outFile") or die("Cannot Open $outFile\n"); #append to this file foreach my $USER(@userNames){ print OUT "$USER\n"; } close(OUT);