When run a process in background using &, I can see it with the command "jobs".
sleep 1h &
sleep 2h &
jobs
However, after I close the current terminal and open a new termianl, I can't find the jobs running background using the command jobs.
Ofcouse, I can use ps aux | grep ... to check the process. But I want to know can i still use jobs to do it. So that, it will be convient to kill the job using command like kill %1.
