in reply to file basics
C:\Users\repellent>type C:\perl_tests\test.txt abc cde efg C:\Users\repellent>type t.pl #opening a file, checking the error code. $fname='C:\perl_tests\test.txt'; open xyz, $fname or die "Error in open:$!"; while(<xyz>){ print "line number $. is : $_"; } C:\Users\repellent>perl t.pl line number 1 is : abc line number 2 is : cde line number 3 is : efg
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: file basics
by harry1705 (Initiate) on Mar 12, 2012 at 01:15 UTC | |
by Anonymous Monk on Mar 12, 2012 at 12:41 UTC | |
by harry1705 (Initiate) on Mar 13, 2012 at 04:02 UTC |