Fseek » History » Revision 5
Revision 4 (Per Amundsen, 05/24/2018 10:17 AM) → Revision 5/11 (Per Amundsen, 12/08/2019 11:02 AM)
_Added in 1.8.10_ */fseek [-lnrw] <handle> <position | line number | wildcard | regex>* Sets the read/write pointer to the specified position in the file. -l - Set position to line 'line number'. -n - Set position to start of the next line. -r - Set position to text matching '[[Scripting_Regex|regex]]'. 'regex'. -w - Set position to text matching '[[Scripting_Wildcards|wildcard]]'. *Parameters* <handle> - The file handle to seek. <position | line number | [[Scripting_Wildcards|wildcard]] | [[Scripting_Regex|regex]]> regex> - The position/Line number with -l/[[Scripting_Wildcards|Wildcard]] with -w/[[Scripting_Regex|regex]] -w/Regex with -w to set.