More and Vi (or) More Vi

To edit a file after looking at it with "more"
Press the letter "v" key and you will be placed
in a vi session.

Quitting the vi session will bring you back
to viewing the file with the "more" command

This will not work with piping a file to "more".

This works:

$ more /etc/hosts

This does not:

$ cat /etc/hosts | more

CLEANUP DOS FILES

If you deal with DOS files and the "^M" character
always appears at the end of the line, here are
two ways to get rid of them.

If you edit the DOS text file with the "vi" 
editor in UNIX, use the following from the 
"vi" command line:

:%s/^V^M//g

From a Unix shell use the command:

% sed 's/^V^M//g' pwlist.txt > pwlist.txt_new

NOTE:  ^V is control V and ^M is control M or Enter