# print all the lines in every file passed via command line that contains login ARGF.each do |line| puts line if line =~ /login/ end