我在 Ubuntu 上从 Bash 切换到了 Zsh,我对此感到非常高兴。然而,有些东西我真的很想念,我没有找到如何实现同样的事情。
在 Bash 中,每当我输入一个长命令并注意到之前必须运行其他命令时,我只需要像下面这样注释掉它:
me@home> #mysuperlongcommand with some arguments
me@home> thecommandIhavetorunfirst #and then: up up
me@home> #mysuperlongcommand with some arguments #I just need to uncomment it!
然而,这种相当反复出现的情况并不像使用 zsh
那样容易解决,因为 #mysuperlongcommand
将以这种方式运行(并导致: zsh: command not found: #mysuperlongcommand
)。