Which character, added to the end of a command, runs that command in the background as a child process of the current shell?
Which character, added to the end of a command, runs that command in the background as a child process of the current shell?
The ampersand (&) character, when added to the end of a command, runs that command in the background as a child process of the current shell. This allows you to continue using the shell while the command executes asynchronously.
C. & When the ampersand (&) character is added to the end of a command, it runs that command in the background as a child process of the current shell. This allows you to continue using the shell while the command executes asynchronously.