我的zsh shell中的jobsfgbg命令出现奇怪的行为。这是一个示例(所有命令都会发生这种情况,而不仅仅是python):

$ python &
[1] 21214
Python 2.7.8 (default, Oct 19 2014, 16:02:00)
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.54)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
[1]  + 21214 suspended (tty output)  python
$ jobs
[1]  + suspended (tty output)  python
$ fg 1
fg: job not found: 1
$ bg 1
bg: job not found: 1

我在OS X上使用标准的oh-my-zsh安装。

最佳答案

您可能习惯了在Bash中工作的fg N(其中N是工作编号)。但是在Zsh中有些不同,需要%;例如fg %1。 Bash行为很方便,因此您可以使Zsh做到这一点:

fg() {
    if [[ $# -eq 1 && $1 = - ]]; then
        builtin fg %-
    else
        builtin fg %"$@"
    fi
}
可以对bghistory执行相同的操作。这最初来自this thread
您也可以只键入fg,就暗示了%1。当您要处理一些工作时,制表符补全也非常有用:fg<tab>

关于bash - zsh中奇怪的 “jobs”行为,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32614648/

10-08 22:48