CompTIA Exam Questions

Which of the following commands will send output from the program myapp to both standard output (std

Which of the following commands will send output from the program myapp to both standard output (stdout) and the file file 1 log?

A.
myapp 0>S1 | cat>filel.log

B.
tee myappfile1.log

C.
myapp | cat > filel .log

D.
cat < myapp | cat > filel .log

E.
myapp | tee filel Jog