Welcome to Apple Discussions!!
What does Terminal have to say to this command?
echo $MANPATH
You should get something like/Users/yourloginname/man:/usr/local/share/man:/usr/share/man
If you don't get this, post what it says.echo $MANPATH
You should get something like/Users/yourloginname/man:/usr/local/share/man:/usr/share/man
If you don't get this, post what it says.$ cd /usr/man
bash: cd: /usr/man: No such file or directory
echo 'export MANPATH=$MANPATH:/usr/share/man/' >> ~/.bash_profile
Then you will need to restart Terminal for this to have an effect: check again with echo $MANPATH. Of course, if you're using a shell other than bash, you will need to modify accordingly.echo 'export MANPATH=$MANPATH:/usr/share/man/' >> ~/.bashrc
echo 'source ~/.bashrc' >| ~/.bash_profile
echo 'export MANPATH=$MANPATH:/usr/share/man/' >> /etc/bashrc
This relies on the fact the the "/etc/profile" as shipped, will source the "/etc/bashrc" file. Note there is no leading period on these two files.source .bashrc
Can't find man pages