Skip to content

Instantly share code, notes, and snippets.

@yumyo
Created August 14, 2017 11:23
Show Gist options
  • Save yumyo/7bd415ce63b0d133bea6c18bc3c51888 to your computer and use it in GitHub Desktop.
Save yumyo/7bd415ce63b0d133bea6c18bc3c51888 to your computer and use it in GitHub Desktop.
WordReference as a Service AppleScript
on run {input, parameters}
set phrase to input as string
set phrase to quoted form of phrase
set from_lang to "en"
set to_lang to "it"
do shell script "open 'https://www.wordreference.com/'" & from_lang & to_lang & "'/'" & phrase
end run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment