在Linux系統下用源碼編譯安裝軟件後,在$PREFIX預約目錄下生成如./share/man/man1/tmux.1的幫助文件 (tmux-1.8)python
<!-- lang: shell --> love@d7s3:~$ tree /usr/local/tmux/ /usr/local/tmux/ ├── bin │ └── tmux └── share └── man └── man1 └── tmux.1
4 directories, 2 filesshell
能夠直接用man查看幫助文件的內容: love@d7s3:~$ man /usr/local/tmux/share/man/man1/tmux.1 ......code
(python-3.3.1)源碼
<!-- lang: shell --> love@d7s3:~$ tree /usr/local/python-3.3.2/share/ /usr/local/python-3.3.2/share/ └── man └── man1 ├── python3.1 -> python3.3.1 └── python3.3.1
2 directories, 2 files love@d7s3:~$ love@d7s3:~$ man /usr/local/python-3.3.2/share/man/man1/python3.3.1 ......編譯