What's new

more linux

mesman00

What's that...?
after entereing a command in the bash prompt (such as ls 'directory here') it lists a whole bunch of stuff. therefore, i can't see the first few things it lists because it goes off the screen. so my question is, is there a way to scroll up and look at the first entries? (note that i am not in X)
 

Hacktarux

Emulator Developer
Moderator
yea, use maj+(page up/page down)
very usefull but there's also other possibilities:
-use * (ls A*)
-use ls | less (the best one imo)
-use mc

or any other thing i am not currently thinking about
 
Last edited:

Slougi

New member
You can scroll using shift+page up/down.
You can also pipe the output into a file: "ls > file". This will create a file called text with the output of ls. You could also pipe the output through less or more: "ls | less" or "ls | more". This lets you scroll easily. In linux there is always more than one way to do something ;)
 
OP
mesman00

mesman00

What's that...?
Hacktarux said:
yea, use maj+(page up/page down)
very usefull but there's also other possibilities:
-use * (ls A*)
-use ls | less (the best one imo)
-use mc

or any other thing i am not currently thinking about

whats maj? is that a command?
 

Top