mark

Records the current file position.

Syntax

set mark

Comments

The current position within the data file is noted so that it can be returned to via a rewind command.

Example

set mark 			// position A
find "Name:"  		// skip ahead
read longname  		// read something
rewind  			// go back to position A