My use case is something like this:
I have an sh file that is used as a proxy for a binary. However I want to only parse "some" options while forwarding the others to the binary. Example: my.sh --proxy-option 1 --opt1 --opt2
- I want to only parse proxy-option
while having the other options in "$@" (--opt1 --opt2). Is this possible?