#!/bin/bash # Install Commands Header # Shows available install commands and help information cliShowInstallHelp() { echo "" echo "Available Install Commands:" echo "" echo " libreportal install - Install LibrePortal software" echo " libreportal install unattended - Install LibrePortal in unattended mode" echo "" echo "The install command will guide you through the LibrePortal installation process." echo "Use 'unattended' for automated installation with default settings." echo "" }