Redhat Linux의 "jobs" 명령은 무엇입니까?

Redhat Linux의 "jobs" 명령은 무엇입니까?

Linux의 명령은 무엇 jobs이며 어떻게 사용합니까? 몇 가지 예를 들어주세요.

답변1

jobs아마도 셸에 내장된 명령일 가능성이 높습니다 . then을 사용하는 경우 행의 시작 부분에서 bash실행하고 검색합니다(검색 시작을 누른 다음 누름). man bash다음이 표시되어야 합니다.jobs/^ *jobs

jobs [-lnprs] [ jobspec ... ]
jobs -x command [ args ... ]
        The first form lists the active jobs.  The options have the  following  meanings:
        -l     List process IDs in addition to the normal information.
        -n     Display information only about jobs that have changed status since the
               user was last notified of their status.
        -p     List only the process ID of the job's process group leader.
        -r     Restrict output to running jobs.
        -s     Restrict output to stopped jobs.

간단한 jobs출력 예:

$ jobs
[1]  - running    firefox-bin
[2]  + running    emacs .zshrc

관련 정보