This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Webroot installation script | |
| # Download latest .dmg from Webroot | |
| curl -o /tmp/wsamacsme.dmg http://anywhere.webrootcloudav.com/zerol/wsamacsme.dmg | |
| # Mount disk image | |
| hdiutil attach -noautoopen /tmp/wsamacsme.dmg; ditto /Volumes/Webroot\ SecureAnywhere /Applications/; diskutil list | grep Webroot\ SecureAnywhere | diskutil unmount /Volumes/Webroot\ SecureAnywhere |