Bird
0
0

What does adding & at the end of a command in Linux do?

easy📝 Conceptual Q11 of 15
Linux CLI - Process Management
What does adding & at the end of a command in Linux do?
ARuns the command with higher priority
BStops the command from running
CRuns the command in the background, freeing the terminal immediately
DSaves the command output to a file
Step-by-Step Solution
Solution:
  1. Step 1: Understand the role of & in Linux commands

    Adding & at the end of a command tells the shell to run it in the background.
  2. Step 2: Effect on terminal usability

    Running a command in the background frees the terminal immediately for other commands.
  3. Final Answer:

    Runs the command in the background, freeing the terminal immediately -> Option C
  4. Quick Check:

    Background process = command + & [OK]
Quick Trick: Remember: & means run in background [OK]
Common Mistakes:
  • Thinking & stops the command
  • Confusing & with output redirection
  • Assuming & increases priority

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Linux CLI Quizzes