Hi, How do I do a simple thing like /bin/cat myfile.txt >> yourfile.txt in unix? I tried with the script shown below but not successful. Am doing it right? Pls. advise. thank you. #!/usr/bin/python import os os.spawnl(os.P_WAIT, "/bin/cat" , "/bin/cat", "myfile.txt >> yourfile.txt") print "Done"