Skip to content

Instantly share code, notes, and snippets.

@bearlikelion
Created April 29, 2020 20:08
Show Gist options
  • Save bearlikelion/c3c9349afdbde6c8cb852c94fb1d6a0c to your computer and use it in GitHub Desktop.
Save bearlikelion/c3c9349afdbde6c8cb852c94fb1d6a0c to your computer and use it in GitHub Desktop.
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