ScriptSpot

Forum topic · General Scripting

"while not eof f do" but from the second line

By titane357 · 2024-10-11

Description

Hi,

I would like to read an external file but not from the first line, from the second one.

Is there a simple way ?

Thanks

Comments (1)

Ok found it :   XX=1 while

titane357 · 2024-10-11

Ok found it :

			
XX=1
while not eof f do
(
l = readline f
if XX > 2 do
(
...
)
XX +=1
)