RE: simple query

2003-03-20 Thread Bob Showalter
mark sony wrote: > Hi > > Can anyone tell me what does $. in perl mean ? > And also anyplace I will get references about these in quick time ie. > a handbook type ? All the special variables are documented in perldoc perlvar $. keeps track of the input line number, similar to awk's NR --

Re: simple query

2003-03-20 Thread WilliamGunther
In a message dated 3/20/2003 12:35:02 AM Eastern Standard Time, [EMAIL PROTECTED] writes: > Hi > > Can anyone tell me what does $. in perl mean ? > And also anyplace I will get references about these in quick time > ie. a handbook type ? > It is an alternitive for $INPUT_LINE_NUMBER. All the