Is there a standard bash tool that acts like echo but outputs to stderr rather than stdout?
I know I can do echo foo 1>&2 but it's kinda ugly and, I suspect, error prone (e.g. more likely to get edited wrong when things change).
|
Is there a standard bash tool that acts like echo but outputs to stderr rather than stdout? I know I can do |
||||
|
|
|
You could define a function:
This would be faster than a script and have no dependencies. |
||||
|
|
|
Since
Since you seem to be worried that |
|||
|
|
No, that's the standard way to do it. It shouldn't cause errors. |
|||||||||||||||||||||
|
|
This is a simple STDERR function, which redirect the pipe input to STDERR.
|
|||
|
Make a script
that would be your tool. Or make a function if you don't want to have a script in separate file. |
|||||
|
|
The |
|||
|
|