I'm using the following conditional in a bash script:
if `grep -q "${ACTION_LABEL} Action" "${OVERRIDE_ACTIONS}"`; then .... fi It basically works. Except if any part of the path in ${OVERRIDE_ACTIONS} contains a space, then the grep fails. How can I get this to work with paths containing spaces>