छिपी हुई फ़ाइलों के लिए .
दिखाना:
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
नए उपनाम के साथ अपने शेल को अपडेट करने के लिए करना होगा ।
GUI से छिपाई गई फ़ाइलों के लिए:
दिखाना:
sudo chflags nohidden /path/to/file
छुपाना:
sudo chflags hidden /path/to/file
ध्यान रखें कि यह hidden
ध्वज को पूरी तरह से हटा देता है ।
sudo
हालांकि सख्ती से आवश्यक है।