One work-around would be:
... -o "x--no-create-db --replace"
# in the script:
option="${option#x}"
As a general rule: You should quote everything (that may be quoted).
One work-around would be:
... -o "x--no-create-db --replace"
# in the script:
option="${option#x}"
As a general rule: You should quote everything (that may be quoted).