我正在制作一个 bash 脚本,它将自动下载 Google Chrome 并将其安装到运行 OSX 10.7 的 MacBook Pro 上的用户应用程序文件夹中。我能够从 Google 的服务器成功下载并挂载 .dmg 文件,但我无法从挂载的 dmg 中获取实际的 Google Chrome.app 文件。这是我写的:
#Download and Install Google Chrome browser
DMG='/mactest/googlechrome.dmg'
USER="Mac"
curl https://dl.google.com/chrome/mac/stable/GGRO/googlechrome.dmg > $DMG
hdiutil attach $DMG
cp -r '/Volumes/Google Chrome/*' '/Users/$USER/Applications'
hdiutil unmount '/Volumes/Google Chrome'
rm $DMG
运行此脚本后,除此错误外,一切都按预期运行:
cp: /Volumes/Google Chrome/*: No such file or directory
有任何想法吗?