open(DATA,"file.inf"); #opens file @array = ; #assigns data to an array close(DATA); #closes the file @array =~ s/Name/Fullname/g; #substitutes Name with Fullname throughout the file open(DATA,">file.inf"); #opens file for writing print DATA @array; #prints data to the file close(DATA); #closes the data