Problem Statement
Which symbol runs a command in the background?
Explanation
Appending an ampersand (&) at the end of a command executes it in the background.
This frees the terminal and allows multiple commands to run simultaneously.
Code Solution
SolutionRead Only
sh long_script.sh &
Practice Sets
This question appears in the following practice sets: