DEV Community

Cover image for Vim to the rescue: Human Readable Processes

Vim to the rescue: Human Readable Processes

Angad Sharma on April 27, 2020

The What Have you ever heard of the top command in linux. Yes, the one that lists out currently running processes with a lot of other me...
Collapse
 
bernolt profile image
JESOP Bernard

If you only want to get the 15 first lines, why don't you use

head -n15

instead of

grep "load average" -A 15

?

Collapse
 
l04db4l4nc3r profile image
Angad Sharma

That can also be used. Actually that's better