How to denote that a command line argument is optional when printing usage

后端 未结 3 1486
情书的邮戳
情书的邮戳 2021-01-30 02:18

Assume that I have a script that can be run in either of the following ways.

./foo arg1 arg2
./foo

Is there a generally accepted way to denote

相关标签:
3条回答
  • 2021-01-30 02:56

    I personally have not seen a 'standard' that denotes that a switch is optional (like how there's a standard that defines how certain languages are written for example), as it really is personal choice, but according to IBM's docs and the Wiki, along with numerous shell scripts I've personally seen (and command line options from various programs) the 'defacto' is to treat square bracketed ([]) parameters as optional parameters. Example from Linux:

    ping (output trimmed...)

    usage: ping [-c count] [-t ttl] host
    

    where [-c count] and [-t ttl] are optional parameters but host is not.

    I personally follow the defacto as well by using [] to mean optional parameter.

    0 讨论(0)
  • 2021-01-30 03:04

    Yes, the square brackets indicate optional arguments in Unix man pages.

    From "man man":

    [-abc] any or all arguments within [ ] are optional.

    0 讨论(0)
  • 2021-01-30 03:10

    I suppose this is as much a standard as anything.

    The Open Group Base Specifications Issue 7

    IEEE Std 1003.1, 2013 Edition

    Copyright © 2001-2013 The IEEE and The Open Group

    Ch. 12 - Utility Conventions

    Although it doesn't seem to mention many things I have commonly seen over the years used to denote various meanings:

    • square brackets [optional option]
    • angle brackets <required argument>
    • curly braces {default values}
    • parenthesis (miscellaneous info)

    Edit: I should add, that these are just conventions. The important thing is to pick a convention which is sensible, clearly state your convention, and stick to it consistently. Be flexible and create conventions which seem to be most frequently encountered on your target platform(s). They will be the easiest for users to adapt to.

    0 讨论(0)
提交回复
热议问题