Last active
February 26, 2021 18:52
-
-
Save momenbasel/dfefa1d7ee9ca37d1f1e5b17549f2d03 to your computer and use it in GitHub Desktop.
infiniteScript.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python2.7 | |
import subprocess | |
import time | |
while True: | |
proc = subprocess.Popen('./wifi-autopwner.sh', stdin=subprocess.PIPE) | |
proc.communicate("71") | |
time.sleep(720000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment