Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions install.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
choice = input('[+] to install press (Y) to uninstall press (N) >> ')
choice = str(input('[+] to install press (Y) to uninstall press (N) >> '))
run = os.system
if str(choice) =='Y' or str(choice)=='y':
if choice.lower() == 'y':

run('chmod 777 autoTOR.py')
run('mkdir /usr/share/aut')
Expand All @@ -12,7 +12,7 @@
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':
if choice.lower() == 'n':
run('rm -r /usr/share/aut ')
run('rm /usr/bin/aut ')
print('[!] now Auto Tor Ip changer has been removed successfully')