Created
April 6, 2016 22:58
-
-
Save mpkocher/0f4317934b3560d841764589d0318efa to your computer and use it in GitHub Desktop.
Open Bugzilla Number in Chrome
This file contains hidden or 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 | |
BZURL="https://bugzilla.nanofluidics.com/show_bug.cgi?id=$1" | |
if [ -z "$1" ]; then | |
echo "No bug number provided" | |
else | |
/usr/bin/open -a "/Applications/Google Chrome.app" "${BZURL}" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment