Skip to content

Instantly share code, notes, and snippets.

@bearlikelion
Created April 29, 2020 20:08
CVGUI.sh
#!/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