Login
Remember
Register
Ask a Question
How to write the output of a command to a file?
0
votes
asked
Nov 11, 2020
in
Linux
by
sharadyadav1986
How to write the output of a command to a file?
#linux-write-the-output
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Nov 11, 2020
by
rahuljain1
How to write the output of a command to a file?
You can use the redirection operator (>) to do this.
Syntax: $ (command) > (filename)
...