I am trying to run a Perl script from Python, but I am not getting any output in stdout (), and my script works fine when I run it from the shell.
First, here's how I run it from the shell (suppose I'm in the right directory):
./vmlinkedclone.pl --server 192.168.20.2 --username root --password root --vmbase_id 2 --vm_destination_id 41 --vmname_destination "clone-41-snapname" --snapname Snapname
And this is how I try to call it from Python:
cmd = ['/home/user/workspace/vmlinkedclone.pl', '--server', '192.168.20.2', '--username', 'root', '--password', 'root' ,'--vmbase_id', '2', '--vm_destination_id', '41', '--vmname_destination', 'clone-41-snapname', '--snapname', 'Snapname'] pipe = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) result = pipe.stdout.read() print "Result : ",result
Why do I get the desired result when I run my script from Shell and get nothing from Python?
user740316
source share