Jump to content

Talk:Redirection (computing)

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by EncMstr (talk | contribs) at 17:14, 14 November 2011 (move newest to last; reply). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Hoinkies

I don't see any evidence that this is common in computing. http://en.wikipedia.org/wiki/Talk:Bracket#Hoinkies Salvar (talk) 18:39, 23 March 2009 (UTC)[reply]

Test Program

You can test all kind of redirection with this little shell script:

 #!/bin/bash
 echo "This is stdout."
 echo "This is stderr." >&2

piping

Is piping redirection? DG12 (talk) 17:01, 14 November 2011 (UTC)[reply]

Yes it is. Output from the first program is no longer going to the terminal, and input from the second program no longer comes from the terminal. —EncMstr (talk) 17:14, 14 November 2011 (UTC)[reply]