Đối với các tệp bị ẩn bởi tiền tố .
Để hiển thị:
defaults write com.apple.finder AppleShowAllFiles YES; killall Finder
Trốn:
defaults write com.apple.finder AppleShowAllFiles NO; killall Finder
chỉnh sửa: theo lời khuyên của RikerW, để rút ngắn các chuỗi dài này thành một số chuỗi ngắn hơn, hãy thêm dòng sau vào ~/.bash_profile
từ trình soạn thảo văn bản yêu thích của bạn:
alias showall='defaults write com.apple.finder AppleShowAllFiles YES; killall Finder'
alias hideall='defaults write com.apple.finder AppleShowAllFiles NO; killall Finder'
lưu ý rằng bạn sẽ phải làm gì source ~/.bash_profile
để cập nhật shell của mình với các bí danh mới.
Đối với các tệp bị ẩn khỏi GUI:
Để hiển thị:
sudo chflags nohidden /path/to/file
Trốn:
sudo chflags hidden /path/to/file
Hãy nhớ rằng điều này hoàn toàn loại bỏ hidden
cờ.
sudo
này là hoàn toàn cần thiết mặc dù.