我想安装是到我的Linux:
以下是安装说明:
# INSTALL:
# * put something like this in your .bashrc:
# . /path/to/z.sh
# * put something like this in your .zshrc:
# . /path/to/z.sh
# function precmd () {
# z --add "$(pwd -P)"
# }
# * cd around for a while to build up the db
# * PROFIT!!
问题是我是 Linux 新手,请给我一个易于理解的指南。这个安装说明太难理解了。
答案1
打开终端。
- 去
/home/your-linux-username
- 输入:
gedit .bashrc
在末尾
.bashrc
粘贴以下内容:./path/to/downloaded/file/z.sh function precmd () { z --add "$(pwd -P)" }
你已经完成了。
现在,关闭重新启动终端,执行一些 cd 命令,例如:cd /home/id
然后z dir-name
就可以了。