Zsh shell 别名

Zsh shell alias

我在 Mac OS 终端上使用 Zsh 作为我的默认 shell 并使用 .zshrc 文件更新别名

我要更新的命令之一是 cat。我想用语法突出显示和行号打印命令的输出。 所以当我输入 cat <filename> 时,它应该被别名为 pygmentize -g <filename> | nl -b a

到目前为止我尝试过的不同方法, 方法#1: alias cat="pygmentize -g | nl -b a"

这是立即打印带有行号的文件内容,但有一段时间没有返回。所以当我按下 Ctrl+C 时,出现以下错误。

  Traceback (most recent call last):
  File "/usr/local/bin/pygmentize", line 33, in <module>
    sys.exit(load_entry_point('Pygments==2.7.3', 'console_scripts', 'pygmentize')())
  File "/usr/local/Cellar/pygments/2.7.3/libexec/lib/python3.9/site-packages/pygments/cmdline.py", line 557, in main
    return main_inner(popts, args, usage)
  File "/usr/local/Cellar/pygments/2.7.3/libexec/lib/python3.9/site-packages/pygments/cmdline.py", line 408, in main_inner
    code = sys.stdin.buffer.read()  # use .buffer to get a binary stream
KeyboardInterrupt

方法#2: function cat() { pygmentize -g | nl -b a }

相同的输出,当按下 Ctrl+C 时,堆栈跟踪与上面相同。

有人可以帮我解决这个问题吗?

错误KeyboardInterrupt表示您退出了程序。但是,如果它有一段时间没有响应,您可以检查 Activity Monitor 看看它是否正在 running/what。

删除“function”关键字,它应该可以正常工作:

cat() {
    pygmentize -g  | nl -b a
}

如果你想让它滚动得更好一点:

cat() {                      
    pygmentize -g  | nl -b a | less -Rai
}

我还建议将其命名为略有不同的名称,例如 ccat,因为 cat 仍然很有用,您可能 运行.[=14= 可以通过任何脚本轻松访问它]