- 如何安装此页面中出现的 zip 文件中的 bash 模块?
http://ss64.com/pass/command-line.html
- 如何安装任何模块(不一定在启动配置文件中)?
- 如何从 Github 安装模块?
非常感谢
答案1
首先,在这种情况下,将模块从 Zip 文件提取到您的主目录:
# pipe from-zipfile a-contained-file to a-new-file
unzip -p strongpw.zip strongpw_bash_module/strongpw.bash > ~/strongpw.bash
然后将以下行添加到您的~/.bashrc
文件中:
. ~/strongpw.bash
的内容~/.bashrc
在每个新的交互式 bash shell 开始时运行。. FILENAME
导致~/.bashrc
在新 shell 中也包含该文件,从而允许它在此定义函数,在本例中为strongpw
。