You can type the "ps ax" command to see information about running programs. You want to capture the output of this command to a file named "running-programs. txt". How would you do that?
a. stdout ps ax running-programs. txt
b. ps ax | running-programs. txt
c. ps ax > running-programs. txt
d. ps ax; running-programs. txt
+2
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “You can type the "ps ax" command to see information about running programs. You want to capture the output of this command to a file named ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Home » Computers & Technology » You can type the "ps ax" command to see information about running programs. You want to capture the output of this command to a file named "running-programs. txt". How would you do that? a. stdout ps ax running-programs. txt b.