Some programs can be run like this:
$ VAR1=val1 VAR2=val2 VAR3=val3 program
I want to make a script that can be customized using these variables. For example, I have a SEPARATOR variable where I need to store a separator. Currently, I write SEPARATOR=" - " program
but the variable is overwritten by the program hence nothing happens.
How do i pass that variable?