-
Type: Improvement
-
Status: Resolved
-
Priority: Blocker
-
Resolution: Fixed
-
Affects Version/s: 6.0
-
Component/s: Shell
-
Epic Link:
-
Tags:
-
Sprint:TGV 7.1-3, TGV 7.1-4
-
Story Points:3
In org.nuxeo.ecm.platform.commandline.executor.api.CommandLineExecutorService#execCommand(java.lang.String, org.nuxeo.ecm.platform.commandline.executor.api.CmdParameters, boolean), there is no way to define if the parameters should be surrounded by quotes or not (before without setting the execution environment).
For following ExifTool command with tag filtering:
exiftool -json "-Title -Publisher" "file.mp3"
doesn't work and requires to avoid quotes around tags:
exiftool -json -Title -Publisher "file.mp3"
To make it work.
Add API to handle quote parameter option.