Linux CLI - Process Management
Which command correctly runs
ping google.com in the background?ping google.com in the background?&& must be at the end of the command to run it in the background. ping google.com & places it correctly.& before the command, which is invalid syntax. ping & google.com splits the command incorrectly. ping google.com && uses &&, which means run next command if previous succeeds, not background.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions