[cmd]常用指令

  • 壓縮
zip -r xxx.zip /.../xxx  
  • 解壓縮
unzip xxx.zip
unrar -e xxx.rar
7za e xxx.7z
  • 隱藏檔案
defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder
  • 還原隱藏
defaults write com.apple.finder AppleShowAllFiles FALSE
killall Finder
  • 批量轉副檔名
    – JAVA轉成TXT
find . -iname "*.java" -exec bash -c 'mv "$0" "${0%.java}.txt"' {} ;
  • 開啟第二個eclipse
open -n /Applications/Eclipse.app