Valid 200-901 Dumps shared by ExamDiscuss.com for Helping Passing 200-901 Exam! ExamDiscuss.com now offer the newest 200-901 exam dumps, the ExamDiscuss.com 200-901 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 200-901 dumps with Test Engine here:
When using the Bash shell, how it the output of the devnet command saved to a tile named "output.txt"?
Correct Answer: B
In the Bash shell, the output of a command can be redirected to a file using the > operator. This operator takes the standard output (stdout) of the command and writes it to the specified file. * Option B (devnet > output.txt): This redirects the output of the devnet command to a file named output.txt. * Option A (devnet & output.txt): This is not a valid redirection operator. * Option C (devnet < output.txt): This uses the file output.txt as input to the devnet command, which is not the requirement. * Option D (devnet I output.txt): This is not a valid redirection operator. Reference: Linux Shell Redirection