Skip to main content
added 199 characters in body
Source Link
ctrl-alt-delor
  • 28.8k
  • 11
  • 66
  • 113

You need to use less less is a pager, it allows you to view a page at a time. e.g. command | less

command | less
ls -Al /etc | less

The most common command while in less are:

  • enter advance one line
  • space advance one page
  • q quit / exit help
  • h help

see ls -Al /etc |man less for more info, like how to search.

You need to use less less is a pager, it allows you to view a page at a time. e.g. command | less

ls -Al /etc | less

You need to use less less is a pager, it allows you to view a page at a time. e.g.

command | less
ls -Al /etc | less

The most common command while in less are:

  • enter advance one line
  • space advance one page
  • q quit / exit help
  • h help

see man less for more info, like how to search.

Source Link
ctrl-alt-delor
  • 28.8k
  • 11
  • 66
  • 113

You need to use less less is a pager, it allows you to view a page at a time. e.g. command | less

ls -Al /etc | less