You would like to run commandl and then command2, whether or not command1 completed successfully. Which command accomplishes this task? A. command1 &command2 B. command1 >command2 C. command1 | command2 D. command12 ; command2

What does the following command do? tar -czvf /tmp/backup.tgz /etc/HOSTNAME A. It extracts the /etc/HOSTNAME file from the /tmp/backup.tgz archive. B. It includes the /etc/HOSTNAME file in the newly created /tmp/backup.tgz archive. C. It produces an error message because the…

You want to redirect the output of the Is command to the Is-output file which already exists. The output should be appended to the file, it should not overwrite the existing content. Which command accomplishes this task? A. Is >>…