Skip to content

Instantly share code, notes, and snippets.

@cypok
Last active November 14, 2016 15:48
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cypok/89ea78b4a46d7a6a36e0 to your computer and use it in GitHub Desktop.
Save cypok/89ea78b4a46d7a6a36e0 to your computer and use it in GitHub Desktop.
OS X Automator service that toggles extension showing
for f in "$@"
do
if [ "`GetFileInfo -ae "$f"`" == "0" ]
then
SetFile -a E "$f"
else
SetFile -a e "$f"
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment