Linux most: Usage Examples for a Little Known Pager Tool
Last updated:Table of Contents
- Install most
- Go to first line of file
- Go to last line of file
- Scroll window down
- Scroll 10 windows down
- Scroll window up
- Scroll 10 windows up
- Scroll window right
- Scroll window left
- Search
Most is a command-line pager application, much like less and more; that's why they have similar names.
most
is better thanless
for exploring datasets
most
is good for datasets because you can navigate your dataset both vertically as well as horizontally.
It expects files to be very wide (not just long) and provides better ways for you to handle them.
most running on xubuntu
Also, you can view large files with it.
Install most
Also using
yum
or whatever you generally use to download packages
$ sudo apt-get install most
Go to first line of file
t
(t is for top)
Go to last line of file
b
(b is for bottom)
Scroll window down
d
Scroll 10 windows down
10d
Scroll window up
u
Scroll 10 windows up
10u
All movement commands can take a number prefix, causing that command to be run multiple times
Scroll window right
>
Scroll window left
<
Search
Just hit /
, like in vim or less.