Ask Question
24 September, 11:28

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)
  1. 24 September, 13:02
    0
    Option C i. e., ps ax > running-programs. txt.

    Explanation:

    When the user wanted to store the output of that command that is 'ps as' then he have to write firstly that command use greater than operator after that filename with extension, in other words, ps ax is greater than running-program. txt that is name of the that.

    So, the following option that is option c is correct according to the statement.
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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers