Questions tagged «zshrc»

5
带参数的ZSH别名
我正在尝试为我的简单git add / commit / push创建一个带参数的别名。 我已经看到功能可以用作别名,所以我尝试但我没有做到.. 在我之前: alias gitall="git add . ; git commit -m 'update' ; git push" 但是我希望能够修改我的提交: function gitall() { "git add ." if [$1 != ""] "git commit -m $1" else "git commit -m 'update'" fi "git push" } (我知道这是一个可怕的git实践)
98 bash  shell  alias  zsh  zshrc 

2
如何将.bashrc导出到.zshrc?
我正在尝试从Bash迁移到zsh。 我将.bashrc直接放到.zshrc中,当我再次尝试使用Bash时,它导致了很多错误。 如何将.bashrc导出到.zshrc?
85 zsh  bash  zshrc 

5
在Catalina,Python / Python3,pip / pip3,PATH,zshrc等中使用zsh时出现问题
我最近更新为Catalina和默认的zsh。我可能在过渡期间弄乱了路径,目前我正在尝试整理Python3.7,pip3,命令行PATH和我的zshrc文件的位置。 似乎在/ usr / bin,/ usr / local / bin,/ usr / local / Cellar / python和/Users/[user]/.local/bin中包含潜在的冗余文件 以下是命令的复制品: $ which python3 /usr/bin/python3 $ which python /usr/bin/python $ which pip pip not found $ which pip3 /usr/bin/pip3 $ pip3 -V Traceback (most recent call last): File "/Library/Developer/CommandLineTools/usr/bin/pip3", line 10, in <module> …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.