#!/bin/bash # System Commands Handler # Handles all system subcommands by calling core functions cliHandleSystemCommands() { local action="$initial_command2" case "$action" in "status") tagsValidateShowSystemStatus ;; "update") checkUpdates ;; "reset") runReinstall ;; *) isNotice "Invalid system command: $action" cliShowSystemHelp ;; esac }