Finding Command-Line Arguments of Programs

command linecommand-line-arguments

I know that unix has man pages, but is there a place I can look to discover command-line arguments of programs? Going to command prompt and typing notepad /? doesn't give anything.

Best Answer

Google is probably the best method of finding command line arguments. There are certain standard arguments most programs accept when written for a particular OS. There also tends to be consistency across programs developed by a particular company. But there is very little consistency generally across all programs.

Using a web search you should be able to find the best and most accurate information regarding command line arguments for any given program. Phrasing your query like this "(program name) command line arguments" is generally the best way, though different programming conventions and different systems may use different verbiage. Experience is really the best teacher regarding other terms you should search for.

Related Question