Created
April 29, 2020 20:08
CVGUI.sh
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 | |
# Launch Commcell GUI on Linux | |
if [ "$EUID" -ne 0 ] | |
then | |
echo "Must run as root (sudo)" | |
notify-send "Must run as root (sudo)" | |
exit | |
fi | |
java -jar /opt/commvault/GUI/cv.jar | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment