I have this bash file:
#/bin/bash PROP=\"-Dprop=foo bar\" java $PROP -jar Foo.jar
So, what I want to do here is pass a space-separated li
Try PROP=-Dprop="foo bar" Or you could do
PROP="-Dprop=\"foo bar\""