#!/bin/bash
# For more information: http://n8henrie.com/2013/02/2021/send-drafts-ios-content-to-quicksilver-or-clipboard-on-osx
# To send it to the clipboard:
cat "$1" | pbcopy
# To send it to Quicksilver, uncomment below:
# cat "$1" | qs
# This line deletes the file. #Comment or delete to prevent this.
rm "$1"