![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| curser control ~ multi line progress bar | purest | Shell Programming and Scripting | 4 | 10-29-2007 03:58 AM |
| positioning cursor | enuenu | High Level Programming | 2 | 06-02-2007 12:35 AM |
| Help with Data Positioning from Columns in a flat file. | oott1 | Shell Programming and Scripting | 3 | 06-14-2006 10:22 AM |
| Cursor Positioning | bestbuyernc | UNIX for Dummies Questions & Answers | 1 | 09-06-2005 05:50 AM |
| Cursor positioning thru VI Editor | Latha Nair | UNIX for Dummies Questions & Answers | 8 | 08-11-2004 04:56 AM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Hi there,
Is there a way to position the cursor at EOF in vi, I know from the man pages how to position the cursor at the end of a paragraph, but what about the EOF (End Of File). Regards |
| Forum Sponsor | ||
|
|
|
||||
|
ESC
: $ aswell takes u to the last line in the file. and one more $ takes you to the EOF. or as said before by google Zbob , CTRL+G gives M of N .... where N is total number of lines in that file. Goto last line and reach EOF by ESC : N and then $ to reach EOF. |
|
||||
|
Quote:
Cheers ZB |