Linux CLI - Process Management
What will be the output of the following commands?
sleep 3 & echo "Done"
sleep 3 & echo "Done"
sleep 3 & runs sleep in background, so shell immediately runs next command.echo "Done" runs immediately and prints "Done" before sleep finishes.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions