Last active
October 28, 2016 11:21
-
-
Save tangingw/057c7ef45e9e5aefd3efe44d1d246dee to your computer and use it in GitHub Desktop.
This is a naughty script that mimics linux watch command on Mac OS X.
This file contains 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
import os | |
import sys | |
import time | |
"""This is a naughty script | |
to mimic linux watch process | |
in Mac OS X terminal. It might be | |
useful for other *BSD family. | |
""" | |
def run_watch(unix_command, delay_time): | |
while True: | |
os.system("clear") | |
os.system(unix_command) | |
time.sleep(float(delay_time)) | |
def main(): | |
if len(sys.argv) != 3: | |
print "python watch.py <UNIX_CMD> <DELAY_TIME>" | |
else: | |
run_watch(sys.argv[1], sys.argv[2]) | |
if __name__ == "__main__": | |
try: | |
main() | |
except KeyboardInterrupt: | |
print "Process ended!" | |
time.sleep(2) | |
os.system("clear") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment