Announcement

Collapse
No announcement yet.

[SOLVED] Terminal, list page by page

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    [SOLVED] Terminal, list page by page

    Hi guys,

    I couldn't find a solution in the man pages...so I'm asking the experts here.

    I would like to list 'ls -lh' page by page (hit 'Enter' or something to see the next page), because I can't see everything..

    Thanks!

    #2
    Re: Terminal, list page by page

    Code:
    ls -lh | more
    Using Kubuntu Linux since March 23, 2007
    "It is a capital mistake to theorize before one has data." - Sherlock Holmes

    Comment


      #3
      Re: Terminal, list page by page



      Thanks!

      Comment


        #4
        Re: [SOLVED] Terminal, list page by page

        or pipe it to less

        Example:

        sudo lshw | less

        see
        man less
        for the differences between less and more
        (e.g., with less, you can go up--back; it also starts quickly)

        Page Up & Page Down
        "q" key to Quit

        An intellectual says a simple thing in a hard way. An artist says a hard thing in a simple way. Charles Bukowski

        Comment

        Working...
        X