Skip to content

Instantly share code, notes, and snippets.

@bryanjvolz
Created March 16, 2018 01:24
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 bryanjvolz/ae9481ebb18c7fb42b25867c573a586c to your computer and use it in GitHub Desktop.
Save bryanjvolz/ae9481ebb18c7fb42b25867c573a586c to your computer and use it in GitHub Desktop.
Setup an all lowercase text action for Mac in Automator
on run {input, parameters}
set lowerCaseString to ¬
(do shell script ("echo " & input & " | tr A-ZÄÁÀ a-zäáà;"))
return lowerCaseString
end run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment