There's a script that calls the other program. The following is program.sh
. It might look non-sense but I'm omitting lots of details and… Let's say I wanna stick to the structure as is.
#!/usr/bin/env bash
function run_this {
/usr/bin/foo -A -B -C
}
run_this
I wanna change the arguments passed to /usr/bin/foo
by the argument passed to program.sh
. So for example, if you call program.sh --quiet
then /usr/bin/foo -A -B -C -X
. What's the best way to achieve this?