Hello world/Standard error: Difference between revisions

Add C Shell, delete redundant UnixPipes.
m ({{omit from|GUISS}})
(Add C Shell, delete redundant UnixPipes.)
Line 471:
 
=={{header|UNIX Shell}}==
{{works with|BashBourne Shell}}
<lang bash>echo "Goodbye, World!" > /dev/stderr</lang>
 
{{works with|Bash}}
<lang bash>echo "Goodbye, World!" >&2</lang>
 
==={{header|UnixPipesC Shell}}===
<lang bashcsh>echo "Goodbye, World!" 1>&2/dev/stderr</lang>
 
This requires <code>/dev/stderr</code>, a device from [[BSD]] and some other Unix clones. This commands works with both Bourne Shell and C Shell.
 
=={{header|X86 Assembly}}==
Anonymous user