12 lines
378 B
Bash
12 lines
378 B
Bash
#!/bin/bash
|
|
# Dynasty Purge Protocol
|
|
run_purge() {
|
|
echo -e "${RED}🔥 WARNING: This will incinerate the Dynasty Framework.${NC}"
|
|
read -p "Are you sure? (y/n): " confirm
|
|
if [[ "$confirm" == "y" ]]; then
|
|
sudo rm -rf /opt/dynr
|
|
sudo rm /usr/local/bin/dynr
|
|
echo -e "${GOLD}The Dynasty has retreated into the shadows.${NC}"
|
|
exit 0
|
|
fi
|
|
} |