| Developer's Daily | Unix by Example |
| main | java | perl | unix | DevDirectory |
| Command | more |
| Description | The
"more" command lets you view text
files. It displays files one screenful at a time. When more has control of your
screen, you can hit the spacebar to display the next
screenful of information, use the '/'
to search for text, or type 'q'
to quit. See the man pages on the more command for even more options on using more. |
| Examples | more
/etc/passwd
ps -ef | more
|