有停止的作业(在bash出口上)
There are stopped jobs.有时我尝试退出bash shell时会收到消息。这是python 2.x中的可重现场景: ctrl+ c由解释器作为异常处理。 ctrl+ z“停止”过程。 ctrl+ d退出python以获取实数。 这是一些实际的终端输出: example_user@example_server:~$ python Python 2.7.3 (default, Sep 26 2013, 20:03:06) [GCC 4.6.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> ctrl+z [1]+ Stopped python example_user@example_server:~$ exit logout There are stopped jobs. Bash没有退出,我必须exit再次退出Bash Shell。 问:什么是“停工”,这是什么意思? …