7
我在我的zsh shell中收到jobs
,fg
和bg
命令的奇怪行爲。下面是一個例子(這種情況發生的所有命令,而不僅僅是python
):zsh中怪異的「作業」行爲
$ 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
我使用
或者學習*真實*簡短的方法:只需鍵入'%1'。假設'fg'。 –
我以爲zsh是bash的一個嚴格的超集。這種行爲怎麼會不一樣? –
Zsh不是Bash的嚴格超集:http://zsh.sourceforge.net/FAQ/zshfaq02.html –