From ea385f04d6d05cdbcc292cbb864eb98f8c12def0 Mon Sep 17 00:00:00 2001 From: 9guerra Date: Wed, 9 Apr 2025 17:21:55 +0100 Subject: [PATCH] Delete install.py00bc8b2a9eb56057dd2316847171ef8dba6bf8db --- install.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 install.py diff --git a/install.py b/install.py deleted file mode 100644 index e697d8f..0000000 --- a/install.py +++ /dev/null @@ -1,18 +0,0 @@ -import os -choice = input('[+] to install press (Y) to uninstall press (N) >> ') -run = os.system -if str(choice) =='Y' or str(choice)=='y': - - run('chmod 777 autoTOR.py') - run('mkdir /usr/share/aut') - run('cp autoTOR.py /usr/share/aut/autoTOR.py') - - cmnd=(' #! /bin/sh \n exec python3 /usr/share/aut/autoTOR.py "$@"') - with open('/usr/bin/aut','w')as file: - file.write(cmnd) - run('chmod +x /usr/bin/aut & chmod +x /usr/share/aut/autoTOR.py') - print('''\n\ncongratulation auto Tor Ip Changer is installed successfully \nfrom now just type \x1b[6;30;42maut\x1b[0m in terminal ''') -if str(choice)=='N' or str(choice)=='n': - run('rm -r /usr/share/aut ') - run('rm /usr/bin/aut ') - print('[!] now Auto Tor Ip changer has been removed successfully')