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