I would like to run an app from my service using the java processBuilder class however that app has command line arguments that have values that have dashes in them.
e.g. >app -b 8 -e u-law
when I create a processBuilder instance and pass in "-e u-law" as one of the command arguments, it can't seem to handle the dash in the argument value. Is there a way around this to get it working?