This is something I have seen many times in manuals, but never fully understood the syntax. When an argument is allowed to be an array of multiple values, what exactly does this syntax mean and how is it used to specify multiple args for the single flag/option?
command_name -f par_name=par_value[,par_name=par_value...]
Another common way I've seen this presented is:
usage: command_name [-f variable_list]
What is an example of this usage in practice? I have been trying with and without commas and brackets but nothing seems to be working.