#!/bin/bash # System Commands Header # Shows available system commands and help information cliShowSystemHelp() { echo "" echo "Available System Commands:" echo "" echo " libreportal system status - Show overall system status" echo " libreportal system update - Update LibrePortal to latest version" echo " libreportal system reset - Reinstall LibrePortal install files" echo " libreportal system reclaim - Reclaim Docker space (build cache + dangling images)" echo " libreportal system image rm [--force] - Remove specific images (comma-separated ids)" echo "" }