I want to be able to read the "next line" without increasing the line counter, so the next time the read command is displayed, it will read the same line.
Example:
this is the first line
this is the second line
this is the third row
I want to know that the second line says "this is the second line", but do not advance my counter to my program:
print <>; print unknown_read_command; print <>;
will print on the screen:
this is the first line
this is the second line
this is the second line
And in a more general sense, how can I change and move the pointer to a string in any direction and any amount I want?
SIMEL source share