#!/bin/bash # Reset Commands Handler # Handles all reset subcommands by calling core functions cliHandleResetCommands() { local reset_type="$initial_command2" if [[ -z "$reset_type" ]]; then runReinstall; else isNotice "Invalid reset command: ${RED}$reset_type${NC}" cliShowResetHelp; fi }