linux man 中文手册安装
Linux Man (手册)
linux man 中文手册安装
步骤
-
下载源程序
-
解压文件并进入该目录
unzip master.zip ;cd master
-
安装支持程序
sudo apt install autotools-dev autoconf automake python3 opencc
-
编译源程序
autoreconf --install --force ./configure make make install # 需要超级用户权限
-
更新
# Debian / Ubuntu: sudo apt update sudo apt install manpages-zh
参考: man-pages-zh/manpages-zh: Chinese Manual Pages (github.com)
其他方法
步骤
-
安装w3m
sudo apt install w3m
-
寻找linux命令网站
https://linux.alianga.com/c/man.html http://linux.51yip.com/search/man https://www.linuxcool.com/man
-
新建脚本文件, 在内添加以下代码
#!/bin/zsh # 也可以是bash w3m http://linux.51yip.com/search/$* # w3m https://linux.alianga.com/c/${*}.html # 可替换网站 # w3m https://www.linuxcool.com/$* # 可替换网站
-
使脚本可执行
chmod a+x xxx.sh # 为脚本添加执行权限 alias help="bash ~/.bin/help.sh" # 为脚本简化命令, 或者添加在.bashrc文件内可以永久生效 ln -s ~/.bin/help.sh /bin/help # 添加软连接,可以补全程序名称. source .bashrc # 刷新配置文件
-
调用方式
help man
文章编写or整理的内容由作者完成,引用or参考会给出原文链接。