centos - How can I get man to see $HOME/share/man pages? -


according man page, "manpath" should echo out contents of ${manpath} when set in environment. (it exported.)

$ echo $manpath /usr/man:/usr/share/man:/usr/local/man:/usr/local/share/man:/usr/x11r6/man:/home/me/shar/man $ manpath /usr/share/man/overrides:/usr/share/man:/usr/share/man/en:/usr/local/share/man 

i got doing because wanted man page in /home/me/shar/man/man1/whatever.1 works:

man -m $home/share/man/man1 whatever 

but these not:

man -m $manpath whatever man -m $manpath/man1 whatever  $ uname -a ; man --version ; cat /etc/system-release linux mysystem 2.6.32-431.3.1.el6.x86_64 #1 smp fri jan 3 21:39:27 utc 2014 x86_64 x86_64 x86_64 gnu/linux man, version 1.6f centos release 6.5 (final) 

i've used before on other linux/unix distros, it's failing on one.


Comments

Popular posts from this blog

php - SPIP: From Tag directly to an article -

jquery - isAjaxRequest always return false -

ruby on rails - In a controller spec, how to find a specific tag in the generated view? -