Talk:Redirection (computing)
Appearance
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)
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)
- 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)