in reply to Re^6: interaction or verify with users pc
in thread interaction or verify with users pc
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;
|
|---|