Shorten URLs with an Automator service

03.09.2010
Twitter and other online services have made shortening URLs a regular chore; such URLs are handy not only on social networks, but anytime you need to share links (especially long ones). There are plenty of ways to shorten URLs, some of them built into social networking apps. But if you'd like to have a shortening tool available almost anywhere, MacOSXHints users and found a way to build a service in Automator that lets you shorten any URL in any app with one click:

Open up Automator and make a new service. In the top bar, set Service Receives to URLs and In to Any Application. Drag over the Run AppleScript action (from the Utilities section) and paste the following code into its entry window, replacing anything that was already there:

on run {input, parameters}

return (do shell script "/usr/bin/curl 'http://qgf.in/api.php?url=" & (item 1 of the input) & "'")

end run

Below that, drag the Copy to Clipboard action. Save the Service as Shorten URL or whatever else you want.