如何过滤jira-cli getIssueList报告

时间:2016-02-15 11:33:29

标签: jira jira-cli

jira.sh --server http://jira.########.###:8080 --password ######### --action getIssueList --jql "project = SetRix order by Created desc" --user ##### --project SetRix --limit 15 --dateFormat "MM-dd" --outputFormat 2 --suppressId --columns "Key,Summary,Created,Status"

上面是我的jira-cli查询,这是报告:

"STR-120","Do not report status for the jobwhen it is terminated","02-13","Done"
"STR-119","timeshift memory leak - high CPU","02-12","To Do"
"STR-118","Timeshift directory per-stream","02-12","To Do"
"STR-117","Restart button needed","02-12","To Do"
"STR-116","Create 'clone' function for presets","02-12","Done"

如何将报告编辑为仅查看“待办事项”条目?

我不想grep,我想使用jira查询。

1 个答案:

答案 0 :(得分:0)

基于JQL和输出列,我会说:

project = SetRix AND Status = 'To Do' order by Created desc

即。只是明确要求仍然是To Do

的项目