# # terminal & Finder interaction # Seize the Finder path into shell 用于 指挥当前 Finder 目录到 终端里。等同于 "从这里启动终端" # o 和 cdf 是相反的操作 alias o="open ." cdf(){ cd "$(osascript -e 'tell app "Finder" to POSIX path of (insertion location as alias)')" } #
在 Mac OS X 上用 SetFile 命令将文件夹从 Finder 中隐藏起来 比如把 HOME 目录下的 “ VirtualBox VMs ” 目录在 Finder 里不显示: $ SetFile -a V ~/VirtualBox\ VMs 如果要显示出来,则把参数中的大写的 V 改成小写的 v : $ SetFile -a v ~/VirtualBox\ VMs