I'm trying to pass a parameter from Ubuntu to a particular Windows program that is picky and MUST have double quotes as part of the parameter string, but I can not seem to do that.
For example, using the following from the Ubuntu bash prompt:
Code: Select all
wine cmd '/c=echo "parameter"'
Code: Select all
"parameter"
Code: Select all
\"parameter\"
Code: Select all
wine cmd "/c=echo \"parameter\""