Fseek » History » Version 8
Per Amundsen, 12/23/2019 01:10 AM
| 1 | 1 | Per Amundsen | _Added in 1.8.10_ |
|---|---|---|---|
| 2 | |||
| 3 | 8 | Per Amundsen | */fseek [-lnrwp] <handle> <position | line number | wildcard | regex>* |
| 4 | 1 | Per Amundsen | |
| 5 | Sets the read/write pointer to the specified position in the file. |
||
| 6 | |||
| 7 | -l - Set position to line 'line number'. |
||
| 8 | -n - Set position to start of the next line. |
||
| 9 | 5 | Per Amundsen | -r - Set position to text matching '[[Scripting_Regex|regex]]'. |
| 10 | 1 | Per Amundsen | -w - Set position to text matching '[[Scripting_Wildcards|wildcard]]'. |
| 11 | 8 | Per Amundsen | -p - Set position to start of the previous line. |
| 12 | 1 | Per Amundsen | |
| 13 | *Parameters* |
||
| 14 | |||
| 15 | <handle> - The file handle to seek. |
||
| 16 | 5 | Per Amundsen | <position | line number | [[Scripting_Wildcards|wildcard]] | [[Scripting_Regex|regex]]> - The position/Line number with -l/[[Scripting_Wildcards|Wildcard]] with -w/[[Scripting_Regex|regex]] with -w to set. |