document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #!/bin/bash
  2.  
  3. # For more information: http://n8henrie.com/2013/02/2021/send-drafts-ios-content-to-quicksilver-or-clipboard-on-osx
  4.  
  5. # To send it to the clipboard:
  6. cat "$1" | pbcopy
  7.  
  8. # To send it to Quicksilver, uncomment below:
  9. # cat "$1" | qs
  10.  
  11. # This line deletes the file. #Comment or delete to prevent this.
  12. rm "$1"
');