When given the following command line.
echo "foo bar" | tee bar | cat
Which of the following output is created?
Which of the following are valid stream redirection operators within Bash? (Choose THREE correct answers.)
From a Bash shell, which of the following commands directly executes the instruction from the file /usr/local/bin/runme.sh without starting a subshell? (Please select TWO answers.)
Which of the following commands can be used to create a USB storage media from a disk image?
Which of the following characters can be combined with a separator string in order to read from the current input source until the separator string, which is on a separate line and without any trailing spaces, is reached?
When running the command
sed -e "s/a/b/" /tmp/file >/tmp/file
While /tmp/file contains data, why is /tmp/file empty afterwards?
Which of the following sequences in the vi editor saves the opened document and exits the editor? (Choose TWO correct answers.)
Which grep command will print only the lines that do not end with a / in the file foo?
Immediately after deleting 3 lines of text in vi and moving the cursor to a different line, which single character command will insert the deleted content below the current line?
Regarding the command:
nice -5 /usr/bin/prog
Which of the following statements is correct?