jobs
Run commands in background
1ls -Rilt ~ &
2jobs
3find ~/.cache/ -type d -exec du '{}' -h ';' | sort -h &
4jobs
Stop background command having output
1disown
The command will continue as it was. You can see it with top.
Run commands in background
1ls -Rilt ~ &
2jobs
3find ~/.cache/ -type d -exec du '{}' -h ';' | sort -h &
4jobs
Stop background command having output
1disown
The command will continue as it was. You can see it with top.