Linux CLI - Process Management
Given the following commands run in a terminal:
What will happen after running
sleep 100 & jobs fg %1
What will happen after running
fg %1?sleep 100 & jobs fg %1
fg %1?sleep 100 & runs sleep in background. jobs lists it as job 1. fg %1 brings job 1 to foreground.fg %1 = foreground job blocks terminal [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions