27 lines
1.4 KiB
Bash
27 lines
1.4 KiB
Bash
#!/bin/bash
|
|
# DYNR Module: Help & Discovery
|
|
|
|
run_help() {
|
|
BLUE='\033[38;5;45m'; PURPLE='\033[38;5;127m'; GOLD='\033[38;5;178m'; NC='\033[0m'
|
|
|
|
clear
|
|
echo -e "${PURPLE}=================================================${NC}"
|
|
echo -e "${BLUE} 🐉 DYNASTY REVOLUTION: ARCHIVE HELP 🐉 ${NC}"
|
|
echo -e "${PURPLE}=================================================${NC}"
|
|
echo -e "${GOLD}Available Stances (Modules) in the Vault:${NC}"
|
|
echo -e " ${BLUE}system-info${NC} - View OS, Kernel, and CPU specs"
|
|
echo -e " ${BLUE}network${NC} - Connectivity & DNS diagnostics"
|
|
echo -e " ${BLUE}system-pulse${NC} - Real-time hardware monitoring"
|
|
echo -e " ${BLUE}log${NC} - View and purge system logs"
|
|
echo -e " ${BLUE}rclone-wizard${NC} - Interactive cloud file transfers"
|
|
echo -e " ${BLUE}security-stance${NC}- Audit active logins and open ports"
|
|
echo -e "${PURPLE}-------------------------------------------------${NC}"
|
|
echo -e "${GOLD}Core Commands:${NC}"
|
|
echo -e " ${BLUE}dynr list${NC} - Show modules installed locally"
|
|
echo -e " ${BLUE}dynr refresh <n>${NC}- Redownload a specific module"
|
|
echo -e " ${BLUE}dynr update${NC} - Update the CLI engine itself"
|
|
echo -e "${PURPLE}=================================================${NC}"
|
|
|
|
read -p "Press Enter to return..." < /dev/tty
|
|
dynr
|
|
} |