Per poter visualizzare i file invisibili ...
Apri Applescript Editor, in Applicazioni > Le utility quindi copia / incolla questo in un nuovo script ...
Dato che El Capitan il trucco di cambiare vista non funziona più, quindi è tornato a uscire dal Finder
Per un metodo per rendere questo in un servizio con comando chiave, vedi
link
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 dovrebbe funzionare con questa versione di aggiornamento della visualizzazione, che è stata più veloce e più veloce; più liscio, ma ha smesso di funzionare a 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
Quindi Salva come applicazione, che puoi semplicemente fare doppio clic per attivare / nascondere i file invisibili.
Non devi uccidere il Finder per questo interruttore, è sufficiente un aggiornamento - & potrebbe essere più veloce.