Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This article helps you to get the list of issues based on the updated date using Jira Command Line Interface (CLI).

...

  1. Execute the below CLI command to return the list of issues in Issues.csv file.

    1. If you are using Windows machine

      Code Block
      themeMidnight
       --action runFromProjectList --input "--action getIssueList --jql ""\"project = @project@ AND updatedDate <= 2019-06-30\""" --file Issues.csv"


    2. If you are using Linux machine

      Code Block
      themeMidnight
       --action runFromProjectList --input "--action getIssueList --jql ""\"project = @project@ AND updatedDate <= 2019-06-30\""" --file Issues.csv"


The parameters used in the above script are:

  • file : Name (or path) of the file specified in the command.
  • jql : Standard way to specify a search for issues for getIssueList, runFromIssueList, and similar CLI actions.


Info
  • Works from CLI v9.4 onwards. 
  • Make necessary changes to the JQL based on the requirement.

...