1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-04 12:06:45 +00:00

🎨 update mole to mo

This commit is contained in:
Tw93
2025-10-05 19:33:39 +08:00
parent 205746df5b
commit f5105c1df2
3 changed files with 27 additions and 26 deletions

View File

@@ -352,19 +352,21 @@ print_usage_summary() {
echo ""
echo "Usage:"
if [[ ":$PATH:" == *":$INSTALL_DIR:"* ]]; then
echo " mo # Shortcut alias for Mole"
echo " mole # Interactive menu"
echo " mole clean # System cleanup"
echo " mole uninstall # Remove applications"
echo " mole update # Update Mole to the latest version"
echo " mole --version # Show installed version"
echo " mo # Interactive menu"
echo " mo clean # System cleanup"
echo " mo uninstall # Remove applications"
echo " mo update # Update Mole to the latest version"
echo " mo remove # Remove Mole from the system"
echo " mo --version # Show installed version"
echo " mo --help # Show this help message"
else
echo " $INSTALL_DIR/mo # Shortcut alias for Mole"
echo " $INSTALL_DIR/mole # Interactive menu"
echo " $INSTALL_DIR/mole clean # System cleanup"
echo " $INSTALL_DIR/mole uninstall # Remove applications"
echo " $INSTALL_DIR/mole update # Update Mole to the latest version"
echo " $INSTALL_DIR/mole --version # Show installed version"
echo " $INSTALL_DIR/mo # Interactive menu"
echo " $INSTALL_DIR/mo clean # System cleanup"
echo " $INSTALL_DIR/mo uninstall # Remove applications"
echo " $INSTALL_DIR/mo update # Update Mole to the latest version"
echo " $INSTALL_DIR/mo remove # Remove Mole from the system"
echo " $INSTALL_DIR/mo --version # Show installed version"
echo " $INSTALL_DIR/mo --help # Show this help message"
fi
echo ""
}