Adding exes.
Adding all the files to run the application.
This commit is contained in:
Executable
+11
@@ -0,0 +1,11 @@
|
||||
#show or hide hidden files in mac finder
|
||||
|
||||
show=$(defaults read com.apple.finder AppleShowAllFiles)
|
||||
if [ "$show" == "TRUE" ]
|
||||
then
|
||||
defaults write com.apple.finder AppleShowAllFiles FALSE;killall Finder
|
||||
else [ "$show" == "FALSE" ]
|
||||
defaults write com.apple.finder AppleShowAllFiles TRUE;killall Finder
|
||||
fi
|
||||
|
||||
exit
|
||||
Reference in New Issue
Block a user