Background a job, then look at it two ways
Background a job, then look at it two ways
Answer
sort -o big.sorted big.txt & jobs -l ps -o pid,ppid,stat,comm
The shell prints [jobID] PID when it backgrounds a job. `jobs -l` adds the PID so you can cross-reference the job number against a ps listing.
S&K 3e ch10 §10.6; POSIX.1-2024 signal concepts