在线查阅命令
release下载
sudo apt-get install autoconf
sudo apt-get install automake
sudo apt-get install opencc
wget https://src.fedoraproject.org/repo/pkgs/man-pages-zh-CN/v1.6.3.6.tar.gz/sha512/dc9ecd461eba41fc30658e028f853e3664fc6ce27c5b48c3159c5c8a452ad6d71730e0e5f551efa7b4c358baf010ba27a855457ae69b21e9637af326044dcca8/v1.6.3.6.tar.gz
tar -zxvf v1.6.3.4.tar.gz
cd manpages-zh-1.6.3.6/
autoreconf --install --force
./configure --disable-zhtw --prefix=/usr/local/zhman
sudo make
sudo make install
echo "alias cman='man -M /usr/local/zhman/share/man/zh_CN' " >> ~/.bashrc
source ~/.bashrc
cman echo
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26