Man command


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Man command
# 1  
Old 10-14-2001
Question Man command

I know what the man command does and I know how to use it, but i am trying to find an answer to a question. When you run man on an other command it will give you the first page on your screen and then you hit the space bar and it brings up the second page. What command option would I use if I wanted to have the whole thing scroll down with no prompts.

Thanks
# 2  
Old 10-15-2001
Pager, not man....man

Well,

You have hit upon one of the neat parts of unix, the use of your environment variables to do things that make life easier, without you knowing. The reason man paginates your man pages is because your variable for PAGER is set. You can unset this, and the pages will FLY by you. You could also set it to whatever you like as a pager (pg, more, less, etc.), then it will use that program to paginate whatever you use as a command that has output that reads the PAGER var and paginates output.


I know this isn't exactly what you wanted, but there it is...


loadc
# 3  
Old 10-15-2001
Thanks

Ill give this a shot and see if I can reset it.
# 4  
Old 10-15-2001
PAger

Do you know how I would do this I have run unset pager and does not seem to make a differnence.
# 5  
Old 10-15-2001
WEEEL

The easy way is to set pager to nothing, at least that has worked for me in the past...

export PAGER=

and it may spit back that that is invalid, if so, I'll look at my box tonight and see what else I have for options for you...



loadc
# 6  
Old 10-16-2001
You can also just do...

man whatever | cat

...by redirecting stdout, it will not try to format and page
to your terminal. Piping to cat will spit it out on your terminal.

I'm not sure why you want this though... Smilie
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Using man command

hi linux expert how to use man command for get help about "extended regular expression"? many thanks samad (2 Replies)
Discussion started by: abdossamad2003
2 Replies

2. Shell Programming and Scripting

Description of the option print0 in the command find (man page)

This is the description of the option -print0 fon the command find in the man page: What does the "True" in the first line of the description mean? (3 Replies)
Discussion started by: puertas12
3 Replies

3. UNIX for Dummies Questions & Answers

MAN command for various shells

Whenever I run manual page on a command I get information about arguments, syntax and so on. However, I wounder if that information is valid only for a certain shell and if yes, then for which one? In other words, would I have different man outputs for csh, ksh, bash and others? Thanks (7 Replies)
Discussion started by: rdogadin
7 Replies

4. UNIX for Dummies Questions & Answers

Unix man command to find out month of the year?

how can i display month of the year i was born with using man command? thanks (2 Replies)
Discussion started by: janetroop95
2 Replies

5. Homework & Coursework Questions

man command output to a txt file

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: I am trying to outut the man command output into a text file which will help me for future reference. 2.... (8 Replies)
Discussion started by: hariniiyer300
8 Replies

6. Shell Programming and Scripting

Man command

How to get only the options and arguments of a command excluding the descriptive help? (1 Reply)
Discussion started by: mayur_verma
1 Replies

7. Linux

man command

Hey people do u know how to disable the man command in linux??? i am not able to do anythg apart from disabling the permission for /usr/bin/... i dont wanna uninstall the man / man pages also... this has been one of the toughest challenges i have come across in linux... can anybody... (5 Replies)
Discussion started by: linux.user
5 Replies

8. Solaris

Creating a Man page for a command

Hi, I would like to develop a man page as the one we usually get when we execute man <command name>. This man page will be for a samll utility that i have written. If this is not possible then what are the available possibilites for creating such help. thanks in advance. (2 Replies)
Discussion started by: raghu.amilineni
2 Replies

9. Programming

man pages of any command from a c program in unix

i wanted to display the man pages of any command in unix from a c program.can some one help me plzzzzzz. (2 Replies)
Discussion started by: spanduu
2 Replies
Login or Register to Ask a Question