Ask 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 "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. 12 June, 02:19
    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 & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers