標籤:
有的時候需要顯系統中的隱藏檔案,在 Mac 中不像windows系統那麼方便(勾選選項就能夠操作),需要在 Terminal 中執行:
localhost:~ mx$ defaults write com.apple.finder AppleShowAllFiles -bool true //顯示localhost:~ mx$ killall Finder
localhost:~ mx$ defaults write com.apple.finder AppleShowAllFiles -bool false //隱藏localhost:~ mx$ killall Finder
這樣才能開啟隱藏的檔案,這樣開啟實現是太麻煩了,並且每次都要輸入那麼長一堆,實在是太麻煩了,所以就得用mac系統下的Automator建立一個方便的形式
1. 開啟 Automator 選擇 Service
2.修改執行的位置和接收參數類型
在右邊編輯框上方選擇: Service receives "no input" in "Finder.app"
3.添加提示資訊(可以忽略)
添加提示資訊,防止誤操作
選擇 Utilities -> Ask for Confirmation 拖到右邊後,顯示的介面如下
4. 根據提示資訊框的結果執行操作
拖動 Utilities -> Run Shell Script 放在提示資訊的下面並輸入:
if [ `defaults read com.apple.finder AppleShowAllFiles` != "TRUE" ];thendefaults write com.apple.finder AppleShowAllFiles TRUEelsedefaults write com.apple.finder AppleShowAllFiles FALSEfikillall Finder
如
注意:if []中的 “` ”,不是單引號,是鍵盤 ESC 下面那個鍵輸入的內容
5. 點擊右上方的 Run 即可查看運行效果、匯出並安裝
雙擊匯出的檔案:
會得到一個提示,執行Install即可:
6.查看使用位置和安裝位置
當頂部工具檔是在Finder程式時,可以Services中開啟即可
Finder -> Services -> 開啟或關閉顯示隱藏檔案
查看安裝位置可以 System Perferences (系統偏好) --> Keyboard(鍵盤) -->Shortcuts(快速鍵)-->Services 中找到“開啟或關閉顯示隱藏檔案”,右鍵 -->Show in Finder即可
Mac OS X 系統下快速顯示隱藏檔案的方法(使用Automator建立workflow)