De acordo com o Manual de referência do Bash: Job Control :
In output pertaining to jobs (e.g., the output of the jobs command), the current job is always flagged with a
+', and the previous job with a-'.
Ontem à noite, antes de abandonar meu computador para a noite, comecei um monte de trabalhos do compilador para que eles estivessem prontos pela manhã, usando make -f alpha.mak &>alpha.out & . Quando voltei e apertei o retorno, vi a seguinte saída:
[1] Done make -f alpha.mak &>alpha.out
[2]- Done make -f beta.mak &>beta.out
[3]+ Done make -f gamma.mak &>gamma.out
Minha pergunta: O que os símbolos + e - significam nessa saída?
Estou usando o bash no RedHat 6.
De acordo com o Manual de referência do Bash: Job Control :
In output pertaining to jobs (e.g., the output of the jobs command), the current job is always flagged with a
+', and the previous job with a-'.
Tags bash job-control shell