mirror of
https://github.com/Z4nzu/hackingtool
synced 2026-05-23 08:58:22 +00:00
Exit after hackingtool is successfully uninstalled
This commit is contained in:
parent
2ecb207953
commit
6538cee32d
1 changed files with 3 additions and 3 deletions
|
|
@ -1,5 +1,6 @@
|
|||
# coding=utf-8
|
||||
import os
|
||||
import sys
|
||||
from time import sleep
|
||||
|
||||
from core import HackingTool
|
||||
|
|
@ -53,9 +54,8 @@ class UninstallTool(HackingTool):
|
|||
"sudo rm -rf /usr/share/doc/hackingtool/;"
|
||||
"cd /etc/;"
|
||||
"sudo rm -rf /etc/hackingtool/;")
|
||||
print("\nHackingtool Successfully Uninstalled..")
|
||||
print("Happy Hacking..!!")
|
||||
sleep(1)
|
||||
print("\nHackingtool Successfully Uninstalled... Goodbye.")
|
||||
sys.exit()
|
||||
|
||||
|
||||
class ToolManager(HackingToolsCollection):
|
||||
|
|
|
|||
Loading…
Reference in a new issue