Created
June 6, 2021 14:55
-
-
Save DineshSolanki/c5c436dbf2a1a8ce48f9a26ca978263e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ $# -eq 0 ]; then | |
echo "No jira id provided" | |
exit 1 | |
fi | |
nohup xdg-open http://jira.yourdomain.com/browse/${1} | |
#usage - openJira.sh jiraid |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment