Para poder ver archivos invisibles ...
Abra Applescript Editor, en Aplicaciones> Utilidades, luego copie / pegue esto en un nuevo script ...
Desde El Capitán, el truco de cambiar de vista ya no funciona, por lo que es volver a salir del Finder
Para obtener un método para convertir esto en un Servicio con comando de teclado, consulte
/apple//a/258741/85275
set newHiddenVisiblesState to "YES"
try
set oldHiddenVisiblesState to do shell script "defaults read com.apple.finder AppleShowAllFiles"
if oldHiddenVisiblesState is in {"1", "YES"} then
set newHiddenVisiblesState to "NO"
end if
end try
do shell script "defaults write com.apple.finder AppleShowAllFiles " & newHiddenVisiblesState
do shell script "killall Finder"
return input
Mavericks / Yosemite debería funcionar con esta versión de actualización de vista, que fue más rápida y suave, pero simplemente dejó de funcionar en El Capitan ...
set newHiddenVisiblesState to "YES"
try
set oldHiddenVisiblesState to do shell script "defaults read com.apple.finder AppleShowAllFiles"
if oldHiddenVisiblesState is in {"1", "YES"} then
set newHiddenVisiblesState to "NO"
end if
end try
do shell script "defaults write com.apple.finder AppleShowAllFiles " & newHiddenVisiblesState
tell application "Finder"
set theWindows to every Finder window
repeat with i from 1 to number of items in theWindows
set this_item to item i of theWindows
set theView to current view of this_item
if theView is list view then
set current view of this_item to icon view
else
set current view of this_item to list view
end if
set current view of this_item to theView
end repeat
end tell
Luego, Guardar como una aplicación, que luego puede hacer doble clic para alternar mostrar / ocultar archivos invisibles.
No necesita matar al Finder para esta alternancia, una actualización es suficiente y puede ser más rápida.