> How do I repeat a Sikuli script using Python?

How do I repeat a Sikuli script using Python?

Posted at: 2014-12-18 
I'm new to coding. I have a Sikuli script that functions properly, but I want to repeat it infinitely using the program Python. A person that made a similar script said to rename the files but he never specified what each field was for and what to rename. The code he had was as follows

#! /usr/bin/env python

import sys

import subprocess

if __name__ == '__main__':

if len(sys.argv) < 2:

print 'usage: processwatch.py [command]'

while True:

subprocess.call(sys.argv[1:])

If anyone can tell me what those fields mean and what I need to rename it would be greatly appreciated.