I guess the title says it all. I know I can get help on a specific command, for example wget, like this:
wget --help
But how can I get help on some specific option of that command? For example, I might want to find out about (and only about) wget's -A option. You won't believe it, but an hour of googleing didn't help me on this question :)
Thanks a lot in advance!
man <command>gives you an online version./command. That pretty much solved my problems :) – Michael Langbein Mar 01 '15 at 18:20