Standard Streams
A cool pastejacking demo
Today I learned about standard streams. I now have a deeper understanding of
computers than ever before.
For instance, I learned that echo writes to stdout, the standard output, by
default.
echo 'This prints to stdout'
You can even redirect it to stderr!
>&2 echo 'This prints to stderr'
Anyways, that’s all I wanted to share.