bg and fg
Front-end and Back-end

sleep 100 & # run the program "sleep" at the back-end
jobs # list programs running at the back-end
fg %1 # bring a specific program to the front-end and run
Ctrl+Z # bring the current program to the back-end and pause the program
bg %1 # active the paused program
			
Reference
  • job control