Hello world/Standard error: Difference between revisions

m
→‎{{header|Bash}}: reading specs is important, i suppose. 'Hello' -> 'Goodbye'
(→‎{{header|Bash}}: added Bash solution)
m (→‎{{header|Bash}}: reading specs is important, i suppose. 'Hello' -> 'Goodbye')
Line 53:
This is the exact same mechanism as that used with Batch File.
 
<lang bash>1>&2 echo 'HelloGoodbye, World!'
echo 'HelloGoodbye, World!' 1>&2</lang>
 
=={{header|C}}==