vote up 0 vote down star

This question is based on the thread.

I have the shell function

function man()
{       
    man "$1" > /tmp/manual; less /tmp/manual 
}

The problem is there exists the command man.

How can you replace the command with my command?

flag

1 Answer

vote up 2 vote down check

Replace man "$1" with the pathname: /usr/bin/man. Or change it to use 'which man' within backquotes. Then run your script in the current shell. On bash/ksh you need to save your script in some file, say man.sh and then run it as '. ./man.sh'.

cat > man.sh
function man()
{       
    /usr/bin/man "$1" > /tmp/manual; less /tmp/manual 
}
^D

. ./man.sh

You get the idea. You can undefine the function at any time: unset -f man

link|flag
@Ryan: Thank you for your answer! It solves the problem! – Masi Jun 27 at 22:27
1  
Oh another thing. You probably want to use "$*" instead of $1 in your function. – Ryan Oberoi Jun 27 at 22:28
"$*" seems to prefer all parameters from 1,2,3,... This may be useful. However, I cannot understand how you read manuals by % man emacs vim % – Masi Jun 27 at 22:34
1  
Well. $* will be useful when you use man -3C printf. And your function will then support all the semantics of the traditional man. If you run man emacs vim, you can skip to the next man by typing q on my system. – Ryan Oberoi Jun 27 at 22:38
@Ryan: I use OS/X. It does not have the option -3C: What is its purpose? --- The "$*" does not work as you describe in OS/X. I also run "$1" "$2" unsuccessfully. --- Could you explain which features I miss if I do not use $*, please. – Masi Jun 27 at 22:53
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.