Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialA X
12,842 PointsWhat is standard error? What is 2> and how does it relate to standard error?
Video referenced: https://teamtreehouse.com/library/console-foundations/environment-and-redirection/pipes-and-redirection
Thanks for your help!
2 Answers
Steven Parker
231,198 PointsThe stream number of the standard error stream is 2.
So putting "2>
" on the command line will redirect the standard error output without affecting the normal output.
Steven Parker
231,198 PointsWhat "standard error" is depends on the program.
But most properly written programs will send all normal output to the standard output stream (1), and any message indicating an error condition to the standard error stream (2).
You didn't indicate your exact command sequence, but a "Permission denied" is most likely a "standard error" message, but it might be issued by the shell itself and not the command in which case it would not be affected by redirection.
Remember to choose a "best answer" on your questions that have been answered to indicate the issue is closed to other readers.
A X
12,842 PointsA X
12,842 PointsSteven Parker : So are all the "Permission Denied" 's all considered "standard errors"? I'm not sure what a standard error even is.