disown - it is used to remove jobs from the job table
$ ping google.com ^Z To list all current jobs $ jobs -l
To remove all jobs $ disown -a
To remove specific jobs $ disown %1
To remove the last job on the job table $ disown
To remove currently running jobs $ disown -r
To keep jobs running after log out $ disown -h <job_ID>
regards, T.Dhanasekar