my $file = "computers.txt"; print "-->>Paste computer name(s) here, press enter key, then ctrl-D keys<<--\n"; @computers = (); foreach (@computers) { open FILE, "$file"; while ($line=){ if (my ($name) = $line=~/(@computers[\.\w]*)/){ print "name\n"; else print "no match found\n"; close FILE, "$file"; } } }