Skip to content

Instantly share code, notes, and snippets.

@dkgrieshammer
Last active January 4, 2018 12:59
Show Gist options
  • Save dkgrieshammer/9fab0e3e9266d634ca5a5d0584057aa9 to your computer and use it in GitHub Desktop.
Save dkgrieshammer/9fab0e3e9266d634ca5a5d0584057aa9 to your computer and use it in GitHub Desktop.
Applescript to convert all your Evernote tags to lowercase (tested on osx)
tell application "Evernote"
try
-- Get list of Tags
set theTags to tags
repeat with theTag in theTags
set tagName to name of theTag
try
set lowerCaseString to do shell script "echo " & tagName & " | tr '[:upper:]' '[:lower:]'"
set name of tag tagName to lowerCaseString
log lowerCaseString
end try
end repeat
end try
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment