[EMAIL PROTECTED] wrote: > Thanks, that looks very promising... > Is there a solution for pre-Python v2.4? I have to have code that works > on 2.x, 0<=x<=4. Do I just use the os.popen instead?
import os
def run_as(username):
pipe = os.popen("su %s" % username, 'w')
pipe.write("whoami")
if __name__ == "__main__":
import sys
for user in sys.argv[1:]:
run_as(user)
--
http://mail.python.org/mailman/listinfo/python-list
