If not, is there a de facto standard? Basically I\'m writing a command line help text like so:
usage: app_name [opti
I think there is no standard syntax for command line usage, but most use this convention:
Microsoft Command-Line Syntax, IBM has similar Command-Line Syntax
Text without brackets or braces
Items you must type as shown
Placeholder for which you must supply a value
[Text inside square brackets]
Optional items
{Text inside braces}
Set of required items; choose one
{a|b}
Separator for mutually exclusive items; choose one
…
Items that can be repeated