-
I tried copying and pasting a complex JQL query from a working filter in the Jira GUI into the
Output included:
I got most of it to work. This does:
Notice the single quotes. So I can't get
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Seems likely that this is a shell quoting error. For *nix, best practice is probably to avoid Maybe the feature request should be to be able to pull the JQL from a file. |
Beta Was this translation helpful? Give feedback.
-
This is indeed a shell quoting error. Check this doc for more info: https://www.etalabs.net/sh_tricks.html (especially "Shell-quoting arbitrary strings" section). |
Beta Was this translation helpful? Give feedback.
Seems likely that this is a shell quoting error. For *nix, best practice is probably to avoid
'
in your query, and then wrap the entire query in'
.Maybe the feature request should be to be able to pull the JQL from a file.