Skip to content

Instantly share code, notes, and snippets.

@2b3pro
Last active April 18, 2020 00:45
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 2b3pro/b3863fed49f814e42d077672f7c71f7c to your computer and use it in GitHub Desktop.
Save 2b3pro/b3863fed49f814e42d077672f7c71f7c to your computer and use it in GitHub Desktop.
TextExpander AppleScript to get TinyUrl
set the ClipURL to (the clipboard as string)
ignoring case
set curlCMD to "curl --stderr /dev/null \"http://tinyurl.com/api-create.php?url=" & ClipURL & "\""
set tinyURL to (do shell script curlCMD)
return tinyURL
end ignoring
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment