In the following command and its output, echo $$ 12942 What is 12942? A. the process ID of the echo command B. the process ID of the current shell C. the process ID of the last command executed D. the…

To test a shell script called myscript, the environment variable FOOBAR must be removed temporarily. How can this be done? A. unset -v FOOBAR B. set -a FOOBAR="" C. env -u FOOBAR myscript D. env -i FOOBAR myscript