1
0
mirror of https://github.com/Z4nzu/hackingtool.git synced 2025-06-20 06:15:54 +02:00

Exit after hackingtool is successfully uninstalled

This commit is contained in:
Christian Clauss
2023-07-19 18:24:38 +02:00
committed by GitHub
parent 2ecb207953
commit 6538cee32d

View File

@ -1,5 +1,6 @@
# coding=utf-8 # coding=utf-8
import os import os
import sys
from time import sleep from time import sleep
from core import HackingTool from core import HackingTool
@ -53,9 +54,8 @@ class UninstallTool(HackingTool):
"sudo rm -rf /usr/share/doc/hackingtool/;" "sudo rm -rf /usr/share/doc/hackingtool/;"
"cd /etc/;" "cd /etc/;"
"sudo rm -rf /etc/hackingtool/;") "sudo rm -rf /etc/hackingtool/;")
print("\nHackingtool Successfully Uninstalled..") print("\nHackingtool Successfully Uninstalled... Goodbye.")
print("Happy Hacking..!!") sys.exit()
sleep(1)
class ToolManager(HackingToolsCollection): class ToolManager(HackingToolsCollection):