When called as my_cmd -a -b ... c,
the script will finally call program a with addition parameters:
a -additional -a -b ... c
How can I write such a bash script?
a -additional "$@" [pad to 30 characters]
"$@" to relay arguments."" necessary?$@ and "$@" when there are spaces inside the arguments. See How to iterate over arguments in bash script.