ð#Syntax10.Scn.FntAALines.Separate ^ ----- Lines extracts lines containing a certain pattern from a text. This can be used, to get directorylistings with negative selections. For example, in order to get all files except *.Bak files one does the following: System.Directory * -- mark the output viewer Lines.Separate *.Bak Lines.Separate (pattern | ^) Extracts the lines with the specified pattern from the marked text and displays them in a separate viewer. The pattern either follows the command or is described by the selection. It contains any character up to the first blank or tab.