답변:
.
표시하려면 :
defaults write com.apple.finder AppleShowAllFiles YES; killall Finder
숨기려고:
defaults write com.apple.finder AppleShowAllFiles NO; killall Finder
편집 : RikerW의 조언에 따라이 긴 문자열을 더 짧은 문자열로 줄이려 ~/.bash_profile
면 좋아하는 텍스트 편집기에서 다음 줄을 추가하십시오 .
alias showall='defaults write com.apple.finder AppleShowAllFiles YES; killall Finder'
alias hideall='defaults write com.apple.finder AppleShowAllFiles NO; killall Finder'
당신이해야 할 것이라는 점을주의 할 source ~/.bash_profile
새로운 별명을 가진 쉘을 업데이트합니다.
표시하려면 :
sudo chflags nohidden /path/to/file
숨기려고:
sudo chflags hidden /path/to/file
이것이 hidden
플래그를 완전히 제거한다는 것을 명심하십시오 .
chflags
파일의 소유자 인 경우 작동하며 그렇지 않은 경우 sudo
필요합니다.
.bash_profile
것이 일반적으로 좋습니다. 내가 가진 showall
및 hideall
숨기기에 세트 / dotfiles을 보여줍니다.
chflags nohidden
작동하지 않는 경우에 부딪 쳤지 만 작동했던 것은이었다 xattr -c /path/to/file
. 파일을 숨기고 있던 것은 파인더 정보 확장 속성이었습니다.
sudo
그래도 꼭 필요한지 확실하지 않습니다 .