Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在 CUI 中运行作业命令来检查作业时。我会得到如下结果。
[4]- Stopped Passwd. [5]+ Stopped Cat > d1.
我没弄明白,为什么+又-是用的?
+
-
谁能给我同样的解释?
从技术上讲,这是特定于您正在使用的外壳(我怀疑是bash),但据我所知,所有外壳都在这里赋予相同的含义,取自古老的1 csh:+是“最新”的工作,fg没有争论将继续,并且-是“以前的”工作。当“当前”作业完成时,前一个成为当前作业。
bash
csh
fg
您还可以将这些称为%+and %-, in fgandbg命令,并将%-and%+用作命令(并且%不带参数, or %%,与 的含义相同%+)。
%+
%-
bg
%
%%
1或其他一些不太讨人喜欢的形容词。:-)