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 | |
| # Application SAP Codes and versions found here: https://helpx.adobe.com/enterprise/package/help/apps-deployed-without-their-base-versions.html | |
| # check if root | |
| if [[ $EUID != 0 ]] ; then | |
| echo "Remote Update Manager: Please run this as root, or via sudo." | |
| exit -1 | |
| fi |
NewerOlder