vote up 5 vote down star

I think stdout, so you can easily grep, what do you think?

flag

5 Answers

vote up 3 vote down

Always stdout, makes it easier to pipe to less, grep it etc.

If you are showing the help text because there was a problem with parsing the command line arguments, then you might use stderr.

link|flag
Well, (s)he specifically said "app --help" so I assume that "--help" is recognized as a command line argument. – blahblah Jul 1 at 9:05
I was just suggesting a case where you might send help to stderr – Paul Dixon Jul 1 at 10:58
vote up 1 vote down

It's not an error, so I'd say stdout....

link|flag
vote up 3 vote down

Well, it's an explicit request for help so it's output. If for some reason you can't output the help or the user mis-spells "help" then, by all means, send that to error :-)

Users that know what they're doing can use the infamous "2>&1" if they want errors on standard output.

link|flag
vote up 6 vote down

Only errors go to stderr. This is in no way an error, it does exactly what the user had in mind, which is print usage information.

link|flag
vote up 0 vote down

netcat is the only application I can think of that would redirect -h to stderr, and I can't for the life of me fathom why.

I suppose if you're outputting the help information because someone used improper arguments, you might want to redirect it to stderr, but personally even then I wouldn't use stderr because I don't think spamming error logs with fullblown help text is useful - I'd rather just output a single error pointing out the arguments were malformed to stderr. If someone is explicitly calling your application using -h or --help, then you really shouldn't redirect it to stderr.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.