if (open(DBASE, $path."database.txt")) { while() { chomp; if ($_ =~ /\.xml/) { if (open(XFILE, $_)) { while () { chomp; if ($_ =~ /\|\<\/name\>/) { print (LIST "$_\n"); } } } } } }