in reply to RE: RE: File Input and Output
in thread File Input and Output
#!/usr/bin/perl print"Gimmie a filename to examine: "; $filename=<STDIN>; open(FILE,$filename); while(<FILE>) { chomp; print "Found $_ in $filename" } close FILEDESC;
|
---|
Replies are listed 'Best First'. | |
---|---|
RE: RE: RE: RE: RE: File Input and Output
by turnstep (Parson) on May 05, 2000 at 06:46 UTC |