All means are fair except solving the problem

yosefk.com

12 points by akkartik 2 days ago


linkregister - 15 minutes ago

It's POSIX convention to write to stderr for anything that's not strict program output. I have seen 2>&1 far too often in scripts. I don't worry about it and happily write error messages to stderr whenever my scripts exit without a 0 status code.

PaulHoule - 2 days ago

Aren't you supposed to return a 0 status code when "yea done!" and some other status code when it wasn't done?