in reply to Re^6: interaction or verify with users pc
in thread interaction or verify with users pc

So, basically, you want to read a file with = separeted entries?

This should work:

open F,"<","/path/to/file" or die "can't open file: $!"; while (<F>) { chomp; my ($name,$color) = split / = /; print "Name = $name, Color = $color\n"; } close F;