Use of MORE


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Use of MORE
# 1  
Old 05-12-2006
Error Use of MORE

Hi,

I want to make alias for evry command with "command | more" so that output is shown in sync on terminal.

Is there any way to do this?

Best regards,
Nilesh
# 2  
Old 05-12-2006
Please explain what you mean by "shown in sync". The best way to go about configuring how more displays things would be to configure more itself, not to make an alias...
# 3  
Old 05-13-2006
I mean use of more with every command will display the output page by page or number of say 20 rows at a time as the user can see it page by page.



Quote:
Originally Posted by Corona688
Please explain what you mean by "shown in sync". The best way to go about configuring how more displays things would be to configure more itself, not to make an alias...
# 4  
Old 05-13-2006
Really bad idea. You will break shell scripts.

For example, if you alias "cut" or "ls", every time you run any script the alias will be will substituted into the script for each cut and ls in the script -- and break it.
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question