How to control gnome-terminal from Python scrypt?
I am developing an application in PyGtk, and would like to launch a gnome-terminal and output commands to it.
My user should then be able to modify the command, or maybe ignore using the up arrow ... etc.
I have been able to launch a terminal, but can't work out how to send commands.
This is how my application starts:
class App(Gtk.Window):
def __init__(self):
Gtk.Window.__init__(self)
process=subprocess.Popen(["gnome-terminal", "--class=App", "--name=app"], shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
response,error=process.communicate()
command-line application-development python gnome-terminal gtk
bumped to the homepage by Community♦ 8 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I am developing an application in PyGtk, and would like to launch a gnome-terminal and output commands to it.
My user should then be able to modify the command, or maybe ignore using the up arrow ... etc.
I have been able to launch a terminal, but can't work out how to send commands.
This is how my application starts:
class App(Gtk.Window):
def __init__(self):
Gtk.Window.__init__(self)
process=subprocess.Popen(["gnome-terminal", "--class=App", "--name=app"], shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
response,error=process.communicate()
command-line application-development python gnome-terminal gtk
bumped to the homepage by Community♦ 8 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
related Stack Overflow question
– jfs
Nov 7 '15 at 22:48
add a comment |
I am developing an application in PyGtk, and would like to launch a gnome-terminal and output commands to it.
My user should then be able to modify the command, or maybe ignore using the up arrow ... etc.
I have been able to launch a terminal, but can't work out how to send commands.
This is how my application starts:
class App(Gtk.Window):
def __init__(self):
Gtk.Window.__init__(self)
process=subprocess.Popen(["gnome-terminal", "--class=App", "--name=app"], shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
response,error=process.communicate()
command-line application-development python gnome-terminal gtk
I am developing an application in PyGtk, and would like to launch a gnome-terminal and output commands to it.
My user should then be able to modify the command, or maybe ignore using the up arrow ... etc.
I have been able to launch a terminal, but can't work out how to send commands.
This is how my application starts:
class App(Gtk.Window):
def __init__(self):
Gtk.Window.__init__(self)
process=subprocess.Popen(["gnome-terminal", "--class=App", "--name=app"], shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
response,error=process.communicate()
command-line application-development python gnome-terminal gtk
command-line application-development python gnome-terminal gtk
edited Jun 27 '13 at 21:56
Lucio
12.6k2485161
12.6k2485161
asked Jun 27 '13 at 21:26
Anthony ScaifeAnthony Scaife
13616
13616
bumped to the homepage by Community♦ 8 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 8 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
related Stack Overflow question
– jfs
Nov 7 '15 at 22:48
add a comment |
related Stack Overflow question
– jfs
Nov 7 '15 at 22:48
related Stack Overflow question
– jfs
Nov 7 '15 at 22:48
related Stack Overflow question
– jfs
Nov 7 '15 at 22:48
add a comment |
2 Answers
2
active
oldest
votes
According to the python docs, you want to use
Popen.communicate(input=None)
http://docs.python.org/2/library/subprocess.html#popen-objects
I would recommend that you edit your command from python before sending it to another process. For example, display a window with the default command and allow the user to edit (or cancel) it before executing it. Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient.
If that doesn't work for you, you could also try this. (depending on what you are actually running from the terminal) Since you mentioned users could edit the command, it would be a good idea to validate the input before running.
command = ['ls','-l']
output = subprocess.check_output( command )
print( output )
2
OP is already using the suggestion viaresponse,error=process.communicate()
where process is an instance ofPopen
. "Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient." I think OP actually deliberately wants to show the terminal in his GUI app.
– gertvdijk
Jun 27 '13 at 22:40
You are correct @gertvdijk, I want a terminal embedded into my application. I am currently using Vte.Terminal, which is good, but it does not behave just like gnome-terminal. For example the delete key produces ^[[3~, and the up arrow key does not show the previous command. I also got excited by what I found here: "gnome-terminal --help-gtk", and figured this would do the job.
– Anthony Scaife
Jun 30 '13 at 0:31
@user936401 If you did found the solution, please create a new answer.
– Lucio
Jul 11 '13 at 23:09
No solution found.
– Anthony Scaife
Dec 10 '14 at 10:16
add a comment |
I had the same problem.
Solved it with tmux, thanks to this answer (copied below).
In the terminal that should receive the command start tmux with an identifier:
tmux new-session -s MYSES
Send commands to it with:
tmux send-keys -t MYSES "ls -l"$'n'
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f313554%2fhow-to-control-gnome-terminal-from-python-scrypt%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
According to the python docs, you want to use
Popen.communicate(input=None)
http://docs.python.org/2/library/subprocess.html#popen-objects
I would recommend that you edit your command from python before sending it to another process. For example, display a window with the default command and allow the user to edit (or cancel) it before executing it. Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient.
If that doesn't work for you, you could also try this. (depending on what you are actually running from the terminal) Since you mentioned users could edit the command, it would be a good idea to validate the input before running.
command = ['ls','-l']
output = subprocess.check_output( command )
print( output )
2
OP is already using the suggestion viaresponse,error=process.communicate()
where process is an instance ofPopen
. "Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient." I think OP actually deliberately wants to show the terminal in his GUI app.
– gertvdijk
Jun 27 '13 at 22:40
You are correct @gertvdijk, I want a terminal embedded into my application. I am currently using Vte.Terminal, which is good, but it does not behave just like gnome-terminal. For example the delete key produces ^[[3~, and the up arrow key does not show the previous command. I also got excited by what I found here: "gnome-terminal --help-gtk", and figured this would do the job.
– Anthony Scaife
Jun 30 '13 at 0:31
@user936401 If you did found the solution, please create a new answer.
– Lucio
Jul 11 '13 at 23:09
No solution found.
– Anthony Scaife
Dec 10 '14 at 10:16
add a comment |
According to the python docs, you want to use
Popen.communicate(input=None)
http://docs.python.org/2/library/subprocess.html#popen-objects
I would recommend that you edit your command from python before sending it to another process. For example, display a window with the default command and allow the user to edit (or cancel) it before executing it. Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient.
If that doesn't work for you, you could also try this. (depending on what you are actually running from the terminal) Since you mentioned users could edit the command, it would be a good idea to validate the input before running.
command = ['ls','-l']
output = subprocess.check_output( command )
print( output )
2
OP is already using the suggestion viaresponse,error=process.communicate()
where process is an instance ofPopen
. "Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient." I think OP actually deliberately wants to show the terminal in his GUI app.
– gertvdijk
Jun 27 '13 at 22:40
You are correct @gertvdijk, I want a terminal embedded into my application. I am currently using Vte.Terminal, which is good, but it does not behave just like gnome-terminal. For example the delete key produces ^[[3~, and the up arrow key does not show the previous command. I also got excited by what I found here: "gnome-terminal --help-gtk", and figured this would do the job.
– Anthony Scaife
Jun 30 '13 at 0:31
@user936401 If you did found the solution, please create a new answer.
– Lucio
Jul 11 '13 at 23:09
No solution found.
– Anthony Scaife
Dec 10 '14 at 10:16
add a comment |
According to the python docs, you want to use
Popen.communicate(input=None)
http://docs.python.org/2/library/subprocess.html#popen-objects
I would recommend that you edit your command from python before sending it to another process. For example, display a window with the default command and allow the user to edit (or cancel) it before executing it. Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient.
If that doesn't work for you, you could also try this. (depending on what you are actually running from the terminal) Since you mentioned users could edit the command, it would be a good idea to validate the input before running.
command = ['ls','-l']
output = subprocess.check_output( command )
print( output )
According to the python docs, you want to use
Popen.communicate(input=None)
http://docs.python.org/2/library/subprocess.html#popen-objects
I would recommend that you edit your command from python before sending it to another process. For example, display a window with the default command and allow the user to edit (or cancel) it before executing it. Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient.
If that doesn't work for you, you could also try this. (depending on what you are actually running from the terminal) Since you mentioned users could edit the command, it would be a good idea to validate the input before running.
command = ['ls','-l']
output = subprocess.check_output( command )
print( output )
edited Jun 28 '13 at 0:25
answered Jun 27 '13 at 22:37
DavidDavid
212
212
2
OP is already using the suggestion viaresponse,error=process.communicate()
where process is an instance ofPopen
. "Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient." I think OP actually deliberately wants to show the terminal in his GUI app.
– gertvdijk
Jun 27 '13 at 22:40
You are correct @gertvdijk, I want a terminal embedded into my application. I am currently using Vte.Terminal, which is good, but it does not behave just like gnome-terminal. For example the delete key produces ^[[3~, and the up arrow key does not show the previous command. I also got excited by what I found here: "gnome-terminal --help-gtk", and figured this would do the job.
– Anthony Scaife
Jun 30 '13 at 0:31
@user936401 If you did found the solution, please create a new answer.
– Lucio
Jul 11 '13 at 23:09
No solution found.
– Anthony Scaife
Dec 10 '14 at 10:16
add a comment |
2
OP is already using the suggestion viaresponse,error=process.communicate()
where process is an instance ofPopen
. "Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient." I think OP actually deliberately wants to show the terminal in his GUI app.
– gertvdijk
Jun 27 '13 at 22:40
You are correct @gertvdijk, I want a terminal embedded into my application. I am currently using Vte.Terminal, which is good, but it does not behave just like gnome-terminal. For example the delete key produces ^[[3~, and the up arrow key does not show the previous command. I also got excited by what I found here: "gnome-terminal --help-gtk", and figured this would do the job.
– Anthony Scaife
Jun 30 '13 at 0:31
@user936401 If you did found the solution, please create a new answer.
– Lucio
Jul 11 '13 at 23:09
No solution found.
– Anthony Scaife
Dec 10 '14 at 10:16
2
2
OP is already using the suggestion via
response,error=process.communicate()
where process is an instance of Popen
. "Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient." I think OP actually deliberately wants to show the terminal in his GUI app.– gertvdijk
Jun 27 '13 at 22:40
OP is already using the suggestion via
response,error=process.communicate()
where process is an instance of Popen
. "Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient." I think OP actually deliberately wants to show the terminal in his GUI app.– gertvdijk
Jun 27 '13 at 22:40
You are correct @gertvdijk, I want a terminal embedded into my application. I am currently using Vte.Terminal, which is good, but it does not behave just like gnome-terminal. For example the delete key produces ^[[3~, and the up arrow key does not show the previous command. I also got excited by what I found here: "gnome-terminal --help-gtk", and figured this would do the job.
– Anthony Scaife
Jun 30 '13 at 0:31
You are correct @gertvdijk, I want a terminal embedded into my application. I am currently using Vte.Terminal, which is good, but it does not behave just like gnome-terminal. For example the delete key produces ^[[3~, and the up arrow key does not show the previous command. I also got excited by what I found here: "gnome-terminal --help-gtk", and figured this would do the job.
– Anthony Scaife
Jun 30 '13 at 0:31
@user936401 If you did found the solution, please create a new answer.
– Lucio
Jul 11 '13 at 23:09
@user936401 If you did found the solution, please create a new answer.
– Lucio
Jul 11 '13 at 23:09
No solution found.
– Anthony Scaife
Dec 10 '14 at 10:16
No solution found.
– Anthony Scaife
Dec 10 '14 at 10:16
add a comment |
I had the same problem.
Solved it with tmux, thanks to this answer (copied below).
In the terminal that should receive the command start tmux with an identifier:
tmux new-session -s MYSES
Send commands to it with:
tmux send-keys -t MYSES "ls -l"$'n'
add a comment |
I had the same problem.
Solved it with tmux, thanks to this answer (copied below).
In the terminal that should receive the command start tmux with an identifier:
tmux new-session -s MYSES
Send commands to it with:
tmux send-keys -t MYSES "ls -l"$'n'
add a comment |
I had the same problem.
Solved it with tmux, thanks to this answer (copied below).
In the terminal that should receive the command start tmux with an identifier:
tmux new-session -s MYSES
Send commands to it with:
tmux send-keys -t MYSES "ls -l"$'n'
I had the same problem.
Solved it with tmux, thanks to this answer (copied below).
In the terminal that should receive the command start tmux with an identifier:
tmux new-session -s MYSES
Send commands to it with:
tmux send-keys -t MYSES "ls -l"$'n'
edited Apr 13 '17 at 12:23
Community♦
1
1
answered Jun 5 '16 at 5:01
naroomnaroom
1012
1012
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f313554%2fhow-to-control-gnome-terminal-from-python-scrypt%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
related Stack Overflow question
– jfs
Nov 7 '15 at 22:48