Skip to content

Instantly share code, notes, and snippets.

@yeled
Created October 7, 2017 20:38
Show Gist options
  • Save yeled/a21c74d432d79ea96f75de43cdf4f91a to your computer and use it in GitHub Desktop.
Save yeled/a21c74d432d79ea96f75de43cdf4f91a to your computer and use it in GitHub Desktop.
#!/bin/bash
# 20171007
# Open in GitHub, astroidmail hook for message-view
# OSX only
# thread_view.run(hooks::github-go.sh %2)=G
ID=$1
FILE=$(notmuch search --output=files id:"$ID")
URL=$(for i in $FILE ; do
grep -iA1 'View it on GitHub:' $i |tail -1
done)
open $URL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment