Questions tagged «zsh»

Z Shell(Zsh)是Unix Shell,可用作交互式登录Shell和功能强大的Shell脚本命令解释器。

6
可以在zsh中使用Bash制表符完成脚本吗?
我有一个用于Apache Hadoop的Bash制表符补全脚本。通常,我将zsh用作日常外壳。当我需要它时,它往往看上去很像bash,但是看起来它们之间的制表符完成系统根本不同。有没有一种简单的方法可以“转换”现有的bash-tab-completion定义以使其在zsh中工作?我不想为此花很多时间,但是如果简单的话,我会省些力气。

25
Rails不断告诉我它当前尚未安装
我rvm过去经常管理不同的红宝石及其宝石。我的外壳是zsh,其中oh-my-zsh配置了基本设置。启用的oh-my-zsh插件是ruby,rails,osx和git。这是我用来安装ruby-1.8.7和rails-3.0.7的命令。 rvm install 1.8.7 rvm use 1.8.7 gem install rails -v=3.0.7 然后我输入rails并得到: Rails is not currently installed on this system. To get the latest version, simply type: $ sudo gem install rails You can then rerun your "rails" command. 我也尝试了更彻底的安装,例如rubygems切换到ruby-1.8.7后重新安装,或者创建了一个全新的gemset,但是没有运气。 这是rvm信息: ruby-1.8.7-p352@rails: system: uname: "Darwin yicai.local 10.8.0 Darwin Kernel Version …
85 ruby-on-rails  ruby  rvm  zsh 

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



5
如何从ZSH的历史记录中删除条目
假设我使用zsh运行了一个命令 echo "mysecret" > file 我可以使用以下命令轻松打印历史记录,包括条目号fc -l: 1 echo "mysecret" >| file 但是,如何轻松从历史记录中删除条目? 我在man zshbuiltins中找不到相应的段落。
79 zsh 

15
在zsh中安装npm后找不到命令
我在zsh中通过npm安装誓言时遇到了一些问题。这就是我得到的。我尝试使用-g选项和不使用-g选项安装它。你知道这是怎么回事吗? [❤ ~/Desktop/sauce-node-demo:master] npm install -g vows npm http GET https://registry.npmjs.org/vows npm http 304 https://registry.npmjs.org/vows npm http GET https://registry.npmjs.org/eyes npm http GET https://registry.npmjs.org/diff npm http 304 https://registry.npmjs.org/eyes npm http 304 https://registry.npmjs.org/diff /usr/local/share/npm/bin/vows -> /usr/local/share/npm/lib/node_modules/vows/bin/vows vows@0.6.4 /usr/local/share/npm/lib/node_modules/vows ├── eyes@0.1.8 └── diff@1.0.3 [❤ ~/Desktop/sauce-node-demo:master] vows zsh: command not found: vows 谢谢
78 macos  zsh  npm  vows 

13
找不到Conda命令
我已经安装Miniconda并增加环境变量export PATH="/home/username/miniconda3/bin:$PATH"对我.bachrc和.bash_profile但仍无法在我的终端上运行的任何畅达命令。 我是否缺少其他设置?我正在使用zsh。

9
获得提示,以指示Zsh中的Git分支
我在.zshrc中未按提示分别运行以下代码。这表明我显然没有一个名为__git_ps1的程序。它不在MacPorts中。 #1 PROMPT="$(__git_ps1 " \[\033[1;32m\] (%s)\[\033[0m\]")\$"$ #2 PROMPT="$(__git_ps1 " (%s)")\$"$ #3 # Get the name of the branch we are on git_prompt_info() { branch_prompt=$(__git_ps1) if [ -n "$branch_prompt" ]; then status_icon=$(git_status) echo $branch_prompt $status_icon fi } # Show character if changes are pending git_status() { if current_git_status=$(git status | grep …
76 git  zsh  prompt 


22
Zsh:找不到Conda / Pip安装命令
因此,我安装了Anaconda,一切正常。安装后,我决定切换到oh-my-zsh。我现在得到: zsh: command not found: conda 尝试使用pip或conda安装时 echo $ZSH_VERSION 5.0.5 我已添加到我的 zshenv.sh export PATH ="/Users/Dz/anaconda/bin:$PATH" 我想念的是什么?
74 python  pip  zsh  conda 

6
Zsh想要自动更正命令,命令前带有_
我最近刚开始使用Zsh在shell提示中提供一些集成支持,以获取我的Git状态等信息。 当我输入: ruby -v 为了确认我正在运行的ruby版本,Zsh询问我是否要将命令更改为_ruby。在提示符下说“否”并且命令按预期完成后,我在确认命令正确后继续在提示符下出现问题。 我假设有一个完成文件或类似的东西。 谢谢 更新: Shell不再尝试完成_ruby,它在关闭Shell几次后停止响应。 我试图清理文件多次,但是有一个“ opts”变量,长度为50行或更多行,并且所有行都一起运行,有些行超过150个字符。如果您仍然想查看附件,也许可以通过电子邮件将附件发送给您。诚挚的道歉。
70 zsh 

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.