I've written a small script in bash that parses either the provided files or stdin if no file is given to produce some output. What is the best way to redirect the parsed output to stdout (at the end of the script the result is stored in a variable). Should I use cat or echo, or is there another preferred method?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
Use the
won't print anything. And there are a number of different versions of |
|||
|
|
|
|
|||
|
|
|
echo. You have your parsed data in a variable, so just |
|||
|
|