Thread
:
Iterating through a file
View Single Post
08-16-2005, 08:07 AM
#
10
(
permalink
)
fp_unit
mike
Join Date: Jan 2005
Location: Ottawa, ON
Posts: 79
Code:
#!/usr/bin/perl open(FILE, "> yourfile.txt"); while(line = <FILE>) { # do something with line }
fp_unit
View Public Profile
Find More Posts by fp_unit