Mac OS X 系統下快速顯示隱藏檔案的方法(使用Automator建立workflow)

來源:互聯網
上載者:User

標籤:

有的時候需要顯系統中的隱藏檔案,在 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)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.