Recall & Review
beginner
What is a subshell in bash scripting?
A subshell is a separate child shell started by the main shell to run commands in isolation. It allows grouping commands so they run in a new shell environment without affecting the parent shell.
Click to reveal answer
beginner
How do you create a subshell to group commands in bash?
You create a subshell by enclosing commands in parentheses: ( command1; command2 ). This runs the commands inside a new shell process.
Click to reveal answer
intermediate
What happens to variable changes inside a subshell?
Changes to variables inside a subshell do not affect the parent shell. The subshell has its own copy of variables, so changes are lost when the subshell ends.
Click to reveal answer
intermediate
Why use subshells instead of just grouping commands with curly braces {}?
Subshells run commands in a separate environment, isolating changes like variable assignments or directory changes. Curly braces group commands but run in the current shell, so changes persist.
Click to reveal answer
beginner
Example: What is the output of this script?
x=5
( x=10; echo $x )
echo $x
Output:
10
5
Explanation: Inside the subshell, x is set to 10 and printed. Outside, x remains 5 because the subshell's change does not affect the parent shell.
Click to reveal answer
Which symbol is used to create a subshell in bash?
✗ Incorrect
Parentheses ( ) create a subshell, running commands in a separate shell process.
If you change a variable inside a subshell, what happens to the variable outside?
✗ Incorrect
Variables changed inside a subshell do not affect the parent shell's variables.
What is the main difference between using ( ) and { } for grouping commands?
✗ Incorrect
Parentheses create a subshell; curly braces group commands but run in the current shell.
Which of these is a valid subshell command grouping?
✗ Incorrect
Only parentheses ( ) create a subshell to run commands in a new shell.
Why might you use a subshell when running commands?
✗ Incorrect
Subshells isolate changes like variable or directory changes from the main shell.
Explain what a subshell is and how it affects variable changes in bash scripting.
Think about running commands inside parentheses.
You got /3 concepts.
Describe the difference between grouping commands with ( ) and { } in bash.
Consider where changes like directory or variable assignments apply.
You got /3 concepts.