Print url
of an issue or list of issues
#625
-
I can view my issues with the following command |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Any help is appreciated, as I tried several things, but to no avail.
Any help appreciated. |
Beta Was this translation helpful? Give feedback.
-
Hi @mohit2152sharma @olivergondza, its not possible to get #!/usr/bin/env bash
HOST=https://jira.server
TICKETS=$(jira issue list --plain --no-headers --columns=KEY)
for ticket in ${TICKETS}
do
echo "${HOST}/browse/${ticket}"
done Does this work for your usecase? |
Beta Was this translation helpful? Give feedback.
There is an
open
command which I completely forgot about even though I almost use it daily 😬$ jira open --help Open opens issue in a browser. If the issue key is not given, it will open the project page. $ jira open ISS-123 --no-browser https://jira.server/browse/ISS-123