2026-01-02 09:55:42 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
# Shared command list for help text and completions.
|
|
|
|
|
MOLE_COMMANDS=(
|
|
|
|
|
"clean:Free up disk space"
|
|
|
|
|
"uninstall:Remove apps completely"
|
|
|
|
|
"optimize:Check and maintain system"
|
|
|
|
|
"analyze:Explore disk usage"
|
|
|
|
|
"status:Monitor system health"
|
|
|
|
|
"purge:Remove old project artifacts"
|
2026-01-04 10:23:23 +08:00
|
|
|
"installer:Find and remove installer files"
|
2026-01-02 09:55:42 +08:00
|
|
|
"touchid:Configure Touch ID for sudo"
|
|
|
|
|
"completion:Setup shell tab completion"
|
|
|
|
|
"update:Update to latest version"
|
|
|
|
|
"remove:Remove Mole from system"
|
|
|
|
|
"help:Show help"
|
|
|
|
|
"version:Show version"
|
|
|
|
|
)
|