n Command

Positions the line pointer at the specified line and lists that line. Synonymous with the G (Goto) command.

Syntax

n

Messages

The message Top  is displayed if the line pointer is set to zero, and the message EOI n (where n is the last line number of the item) is displayed if the pointer is set to the EOIClosed End of Item.  .

See Also

B (Bottom), T (Top), G (Goto).

Example

:EDIT FILE1 ITEM1
Top
.L99
001 AAAAA
002 BBBBB
003 CCCCC
004 DDDDD
005 EEEEE
006 FFFFF
EOI 006
.5
005 EEEEE



List the first 99 lines in the item.
Item has only 6 lines, so entire item is listed.






List line 5.