Skip to content

Instantly share code, notes, and snippets.

@aspiers
Last active December 17, 2015 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aspiers/5590440 to your computer and use it in GitHub Desktop.
Save aspiers/5590440 to your computer and use it in GitHub Desktop.
#!/bin/bash
read -p 'Enter event> ' event
google calendar add --user myaccount@gmail.com "${event// @ / at }" 2>&1 | \
awk '{ print "* " $0 }
/^Event created: / {
system("url_handler.sh " substr($0, 16))
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment