getopt
https://www.rdocumentation.org/packages/getopt
R

getopt is a package in the R language that provides a flexible and efficient way to parse command-line arguments and options in R scripts or programs. It allows developers to define and handle command-line arguments, making it easier to interact with R code through command-line interfaces. getopt simplifies the process of extracting and validating user-provided input from the command line, enabling developers to build more robust and user-friendly applications.

The getopt package follows the GNU style of command-line option parsing, where options are specified using single hyphen (-) or double hyphen (--) prefixes. It supports a variety of option types, including flags, required arguments, and optional arguments. getopt provides functions to define and parse these options, as well as to handle error conditions and generate usage help messages.

With getopt, developers can specify the expected command-line options and their corresponding handlers. They can define short and long option names, specify whether an option requires an argument, and define default values for optional arguments. getopt also supports grouping of related options and allows developers to customize the behavior and appearance of the generated help messages.