Para poder ver archivos invisibles ...
Open Applescript Editor, en Aplicaciones > Las utilidades luego copian / pegan esto en un nuevo script ...
Desde El Capitán, el truco de cambiar de vista ya no funciona, así que es hora de salir del Finder
Para un método para convertir esto en un Servicio con comando clave, vea
enlace
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 & Más suave, pero simplemente dejó de funcionar en El Capitán ...
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 guárdalo como una aplicación, que puedes hacer doble clic para mostrar / ocultar archivos invisibles.
No es necesario eliminar el Finder para este conmutador, una actualización es suficiente - & puede ser más rápido.