#!/bin/bash # Update Commands Handler # Handles all update subcommands by calling core functions cliHandleUpdateCommands() { local update_type="$initial_command2" if [[ -z "$update_type" ]]; then checkUpdates; else isNotice "Invalid update command: ${RED}$update_type${NC}" cliShowUpdateHelp; fi }