I am new at this so hope you understand...
Now I am using python subprocess module for sending the specific command.
After I send the command1 with Popen function, I would like to send a command2 to same process one more.
Is it possible...?
// Example
// command1 -> Opening command for text program.
// command2 -> Executing the write and save command.(on above text program)
popen = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
// next....?
please let me know If I understand it incorrectly.