Which of the following filesystems is most commonly used for Linux distributions?
Correct Answer:
B
Which of the following possibilities is only available when using open source software?
Correct Answer:
D
How can the normal output of a command be written to a file while discarding the error output?
Correct Answer:
E
Which of the following commands redirects the output of cmd to the file foo.txt, in which an existing file is overwritten?
Correct Answer:
E
The script, script.sh, consists of the following lines:
#!/bin/bash echo $2 $1
Which output will appear if the command, ./script.sh test1 test2, is entered?
Correct Answer:
B