Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision Last revision Both sides next revision | ||
howto:getopts_tutorial [2018/03/20 23:00] ffox8 [Description] |
howto:getopts_tutorial [2018/03/20 23:57] ffox8 [See also] link |
||
---|---|---|---|
Line 10: | Line 10: | ||
* ''getopts'' is defined in POSIX(r). | * ''getopts'' is defined in POSIX(r). | ||
+ | ---- | ||
Some other methods to parse positional parameters - using neither **getopt** nor **getopts** - are described in: [[scripting:posparams | How to handle positional parameters]]. | Some other methods to parse positional parameters - using neither **getopt** nor **getopts** - are described in: [[scripting:posparams | How to handle positional parameters]]. | ||
Line 295: | Line 296: | ||
* Internal: [[syntax:ccmd:while_loop]] | * Internal: [[syntax:ccmd:while_loop]] | ||
* POSIX [[http://pubs.opengroup.org/onlinepubs/9699919799/utilities/getopts.html#tag_20_54|getopts(1)]] and [[http://pubs.opengroup.org/onlinepubs/9699919799/functions/getopt.html|getopt(3)]] | * POSIX [[http://pubs.opengroup.org/onlinepubs/9699919799/utilities/getopts.html#tag_20_54|getopts(1)]] and [[http://pubs.opengroup.org/onlinepubs/9699919799/functions/getopt.html|getopt(3)]] | ||
+ | * [[https://stackoverflow.com/questions/192249/how-do-i-parse-command-line-arguments-in-bash| parse CLI ARGV ]] |