May 242010
How to combine the output of multiple commands into a single file?
Answer:
You can combine multiple commands by a brackets, and do the file redirection.
E.g.
# (echo "A"; echo "B"; echo "C") > output.txt
Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.
How to combine the output of multiple commands into a single file?
Answer:
You can combine multiple commands by a brackets, and do the file redirection.
E.g.
# (echo "A"; echo "B"; echo "C") > output.txt