_Added in 4.2_ *$freadex(name|N)* Returns the rest of the content from an open file starting from the current position. *Parameters* name|N - Name of the file or the Nth file. *Example*
; Open a file.
/fopen Example $adiircini

; Read the next line.
//echo -ag The content of adiircini is: $freadex(Example)

; Close the file.
/fclose Example