Ask Question
13 August, 10:47

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

+4
Answers (1)
  1. 13 August, 14:35
    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?
Get 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 there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers