아래 명령어로 파인더를 강제 종료시켜주고 다시 파인더로 확인하면 숨김파일/폴더가 확인가능해 진다.
killall Finder
반대로 다시 파일 및 폴더를 숨기고 싶을 때는
아래와 같이 해주면 된다.
defaults write com.apple.Finder AppleShowAllFiles NO killall Finder
더 간단히 showFiles, hideFiles 명령어로 숨김, 보이기 설정하기!
참고 사이트 => http://ianlunn.co.uk/articles/quickly-showhide-hidden-files-mac-os-x-mavericks/
Open Terminal found in Finder > Applications > Utilities
In Terminal, paste the following: sudo nano ~/.bash_profile
Enter your Mac’s administration password if required, then hit return
At the bottom of the open .bash_profile file, paste the following: alias showFiles='defaults write com.apple.finder AppleShowAllFiles YES; killall Finder /System/Library/CoreServices/Finder.app'
Below that, paste the following: alias hideFiles='defaults write com.apple.finder AppleShowAllFiles NO; killall Finder /System/Library/CoreServices/Finder.app'
Press ctrl + O and hit return to save the file
Press ctrl + X to exit the file and return to the command line
In Terminal, paste the following: source ~/.bash_profile to refresh your profile and make the aliases available
댓글