0 votes
in Linux by
How to write the output of a command to a file?

1 Answer

0 votes
by
How to write the output of a command to a file?

You can use the redirection operator (>) to do this.

Syntax: $ (command) > (filename)
...