Mac 命令行安装 dmg文件

1.安装dmg文件

  hdiutil attach jdk-9.0.1_osx-x64_bin.dmg

  

  会挂载在 /Volumes 目录下

  

2.安装pkg文件(可以 man installer 查看命令的参数)

  sudo installer -pkg JDK 9.0.1.pkg -target /

  

3.卸载

  卸载镜像:

    hdiutil detach /Volumes/JDK 9.0.1/

    

  卸载JDK:

    sudo rm -rf /Library/Java/JavaVirtualMachines

  APP的话一般安装在/Applications :

    cd /Applications

    rm -rf Google Chrome.app

原文地址:https://www.cnblogs.com/SZxiaochun/p/7745177.html