Skip to content

Instantly share code, notes, and snippets.

@mpkocher
Created April 6, 2016 22:58
Show Gist options
  • Save mpkocher/0f4317934b3560d841764589d0318efa to your computer and use it in GitHub Desktop.
Save mpkocher/0f4317934b3560d841764589d0318efa to your computer and use it in GitHub Desktop.
Open Bugzilla Number in Chrome
#!/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