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
Forum topic · General Scripting
By titane357 · 2024-10-11
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
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
)