Last active
November 14, 2016 15:48
-
-
Save cypok/89ea78b4a46d7a6a36e0 to your computer and use it in GitHub Desktop.
OS X Automator service that toggles extension showing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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