1

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!

1 Answers1

1

use man pages in ubuntu

in the terminal type

man <command name>

eg: man wget

it will shows up a detailed description of the command including options.

minion91
  • 539
  • 1
  • 5
  • 17