For example, if I have this code:
subprocess.call(['gnome-terminal'])
Is it possible to have python output strings to that specific terminal that was just opened? Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Possibly, but it is easier to have a custom process running in the subordinate terminal. For example, given
sserv.pyfrom the example server in the documentation the command:will happily chat on port 9999 with you. Given a more complex
sserv.pyit could do anything you want (anything terminalish, that is).