How to run xfce-terminal with different commands per tab and keep using the tabs after the commands have...
To keep the overview I like to place multiple commands always in the same order and start them automatically together (gradle, git, database, scala-REPL, jboss...)
-H (hold) seems to mean that the terminal isn't closed after termination, but how do I terminate such a process willfully? Not at all? In such a way that I can continue to use the terminal.
I'm using xubuntu with with xfce4-terminal and bash. Is there a better GUI-solution to startup multiple commands, with the ability to continue working in that window/tab?
Update: If you don't know these commands: Jboss and gradle are continously producing output, which you don't want to have intermixed in the same terminal. And sometimes they need to be interrupted with ^C, and restarted. I don't like to reopen an xfce4-term and navigate to the directory I need to act in.
Database and scala-REPL are interactive so there is no sense in starting them in the background.
My current startup-script just navigates to the desired directories, and opens all tabs in the right order to find them always at the same position, naming every tab for its purpose:
xfce4-terminal -T eclipse --working-directory=/home/stefan/oximity -e "/opt/eclipse/eclipse"
--tab -T arandr --working-directory=/home/stefan/oximity -e "arandr /home/stefan/.screenlayout/oximity.sh"
--tab -T bash --working-directory=/home/stefan/oximity
--tab -T gradle --working-directory=/home/stefan/oximity/med
--tab -T git --working-directory=/home/stefan/oximity/med
--tab -T mysql --working-directory=/opt/mini/mysql
--tab -T jboss --working-directory=/opt/mini/jboss
--tab -T jboss-log --working-directory=/opt/mini/jboss/standalone/log
--tab -T scala-REPL --working-directory=/home/stefan/proj/mini/forum -e /opt/scala/bin/scala
Eclipse and arandr are detached from the shell and run in their own window, so there the -e (execute) param works. I think for the scala-REPL it works since it is the last command in the list.
xfce4-terminal
add a comment |
To keep the overview I like to place multiple commands always in the same order and start them automatically together (gradle, git, database, scala-REPL, jboss...)
-H (hold) seems to mean that the terminal isn't closed after termination, but how do I terminate such a process willfully? Not at all? In such a way that I can continue to use the terminal.
I'm using xubuntu with with xfce4-terminal and bash. Is there a better GUI-solution to startup multiple commands, with the ability to continue working in that window/tab?
Update: If you don't know these commands: Jboss and gradle are continously producing output, which you don't want to have intermixed in the same terminal. And sometimes they need to be interrupted with ^C, and restarted. I don't like to reopen an xfce4-term and navigate to the directory I need to act in.
Database and scala-REPL are interactive so there is no sense in starting them in the background.
My current startup-script just navigates to the desired directories, and opens all tabs in the right order to find them always at the same position, naming every tab for its purpose:
xfce4-terminal -T eclipse --working-directory=/home/stefan/oximity -e "/opt/eclipse/eclipse"
--tab -T arandr --working-directory=/home/stefan/oximity -e "arandr /home/stefan/.screenlayout/oximity.sh"
--tab -T bash --working-directory=/home/stefan/oximity
--tab -T gradle --working-directory=/home/stefan/oximity/med
--tab -T git --working-directory=/home/stefan/oximity/med
--tab -T mysql --working-directory=/opt/mini/mysql
--tab -T jboss --working-directory=/opt/mini/jboss
--tab -T jboss-log --working-directory=/opt/mini/jboss/standalone/log
--tab -T scala-REPL --working-directory=/home/stefan/proj/mini/forum -e /opt/scala/bin/scala
Eclipse and arandr are detached from the shell and run in their own window, so there the -e (execute) param works. I think for the scala-REPL it works since it is the last command in the list.
xfce4-terminal
Your question is still unclear to me. You want a terminal to revert to shell once the command it was started with terminates? Something likexterm -e 'stuff;bash'
?
– frostschutz
May 25 '13 at 9:48
1
This question still needs work! I found this thread, I think this is what the OP is looking for: How to keep xfce4-terminal open?. He wants to know how to access a tab where the "-H" switch has been used and continue to use it as a normal terminal window. OP, can you please confirm if I'm correct?
– slm♦
May 25 '13 at 12:54
@slm: Yes, I like to keep the terminal open to process further commands - I just like to start the first of my commands automatically and have multiple, named tabs.
– user unknown
May 25 '13 at 13:03
add a comment |
To keep the overview I like to place multiple commands always in the same order and start them automatically together (gradle, git, database, scala-REPL, jboss...)
-H (hold) seems to mean that the terminal isn't closed after termination, but how do I terminate such a process willfully? Not at all? In such a way that I can continue to use the terminal.
I'm using xubuntu with with xfce4-terminal and bash. Is there a better GUI-solution to startup multiple commands, with the ability to continue working in that window/tab?
Update: If you don't know these commands: Jboss and gradle are continously producing output, which you don't want to have intermixed in the same terminal. And sometimes they need to be interrupted with ^C, and restarted. I don't like to reopen an xfce4-term and navigate to the directory I need to act in.
Database and scala-REPL are interactive so there is no sense in starting them in the background.
My current startup-script just navigates to the desired directories, and opens all tabs in the right order to find them always at the same position, naming every tab for its purpose:
xfce4-terminal -T eclipse --working-directory=/home/stefan/oximity -e "/opt/eclipse/eclipse"
--tab -T arandr --working-directory=/home/stefan/oximity -e "arandr /home/stefan/.screenlayout/oximity.sh"
--tab -T bash --working-directory=/home/stefan/oximity
--tab -T gradle --working-directory=/home/stefan/oximity/med
--tab -T git --working-directory=/home/stefan/oximity/med
--tab -T mysql --working-directory=/opt/mini/mysql
--tab -T jboss --working-directory=/opt/mini/jboss
--tab -T jboss-log --working-directory=/opt/mini/jboss/standalone/log
--tab -T scala-REPL --working-directory=/home/stefan/proj/mini/forum -e /opt/scala/bin/scala
Eclipse and arandr are detached from the shell and run in their own window, so there the -e (execute) param works. I think for the scala-REPL it works since it is the last command in the list.
xfce4-terminal
To keep the overview I like to place multiple commands always in the same order and start them automatically together (gradle, git, database, scala-REPL, jboss...)
-H (hold) seems to mean that the terminal isn't closed after termination, but how do I terminate such a process willfully? Not at all? In such a way that I can continue to use the terminal.
I'm using xubuntu with with xfce4-terminal and bash. Is there a better GUI-solution to startup multiple commands, with the ability to continue working in that window/tab?
Update: If you don't know these commands: Jboss and gradle are continously producing output, which you don't want to have intermixed in the same terminal. And sometimes they need to be interrupted with ^C, and restarted. I don't like to reopen an xfce4-term and navigate to the directory I need to act in.
Database and scala-REPL are interactive so there is no sense in starting them in the background.
My current startup-script just navigates to the desired directories, and opens all tabs in the right order to find them always at the same position, naming every tab for its purpose:
xfce4-terminal -T eclipse --working-directory=/home/stefan/oximity -e "/opt/eclipse/eclipse"
--tab -T arandr --working-directory=/home/stefan/oximity -e "arandr /home/stefan/.screenlayout/oximity.sh"
--tab -T bash --working-directory=/home/stefan/oximity
--tab -T gradle --working-directory=/home/stefan/oximity/med
--tab -T git --working-directory=/home/stefan/oximity/med
--tab -T mysql --working-directory=/opt/mini/mysql
--tab -T jboss --working-directory=/opt/mini/jboss
--tab -T jboss-log --working-directory=/opt/mini/jboss/standalone/log
--tab -T scala-REPL --working-directory=/home/stefan/proj/mini/forum -e /opt/scala/bin/scala
Eclipse and arandr are detached from the shell and run in their own window, so there the -e (execute) param works. I think for the scala-REPL it works since it is the last command in the list.
xfce4-terminal
xfce4-terminal
edited May 21 '14 at 13:13
Stéphane Chazelas
298k54563910
298k54563910
asked May 15 '13 at 10:13
user unknown
7,21812248
7,21812248
Your question is still unclear to me. You want a terminal to revert to shell once the command it was started with terminates? Something likexterm -e 'stuff;bash'
?
– frostschutz
May 25 '13 at 9:48
1
This question still needs work! I found this thread, I think this is what the OP is looking for: How to keep xfce4-terminal open?. He wants to know how to access a tab where the "-H" switch has been used and continue to use it as a normal terminal window. OP, can you please confirm if I'm correct?
– slm♦
May 25 '13 at 12:54
@slm: Yes, I like to keep the terminal open to process further commands - I just like to start the first of my commands automatically and have multiple, named tabs.
– user unknown
May 25 '13 at 13:03
add a comment |
Your question is still unclear to me. You want a terminal to revert to shell once the command it was started with terminates? Something likexterm -e 'stuff;bash'
?
– frostschutz
May 25 '13 at 9:48
1
This question still needs work! I found this thread, I think this is what the OP is looking for: How to keep xfce4-terminal open?. He wants to know how to access a tab where the "-H" switch has been used and continue to use it as a normal terminal window. OP, can you please confirm if I'm correct?
– slm♦
May 25 '13 at 12:54
@slm: Yes, I like to keep the terminal open to process further commands - I just like to start the first of my commands automatically and have multiple, named tabs.
– user unknown
May 25 '13 at 13:03
Your question is still unclear to me. You want a terminal to revert to shell once the command it was started with terminates? Something like
xterm -e 'stuff;bash'
?– frostschutz
May 25 '13 at 9:48
Your question is still unclear to me. You want a terminal to revert to shell once the command it was started with terminates? Something like
xterm -e 'stuff;bash'
?– frostschutz
May 25 '13 at 9:48
1
1
This question still needs work! I found this thread, I think this is what the OP is looking for: How to keep xfce4-terminal open?. He wants to know how to access a tab where the "-H" switch has been used and continue to use it as a normal terminal window. OP, can you please confirm if I'm correct?
– slm♦
May 25 '13 at 12:54
This question still needs work! I found this thread, I think this is what the OP is looking for: How to keep xfce4-terminal open?. He wants to know how to access a tab where the "-H" switch has been used and continue to use it as a normal terminal window. OP, can you please confirm if I'm correct?
– slm♦
May 25 '13 at 12:54
@slm: Yes, I like to keep the terminal open to process further commands - I just like to start the first of my commands automatically and have multiple, named tabs.
– user unknown
May 25 '13 at 13:03
@slm: Yes, I like to keep the terminal open to process further commands - I just like to start the first of my commands automatically and have multiple, named tabs.
– user unknown
May 25 '13 at 13:03
add a comment |
4 Answers
4
active
oldest
votes
The -H/-hold
option is to keep the terminal emulator Window open once the applications started in it (shell or other) has exited. In that state, nothing more can happen.
If you want to start a command as a job of an interactive shell in the xfce4-terminal terminal emulator and keep the shell running and use it interactively after the application has exited, with bash
, you can make use of the $PROMPT_COMMAND
environment variable, to have xfce-terminal
start an interactive shell that starts the given command just before the first prompt.
xfce4-terminal
-T eclipse
--working-directory=/home/stefan/oximity
-e 'env PROMPT_COMMAND="unset PROMPT_COMMAND; /opt/eclipse/eclipse" bash'
--tab -T arandr
--working-directory=/home/stefan/oximity
-e 'env PROMPT_COMMAND="unset PROMPT_COMMAND; arandr /home/stefan/.screenlayout/oximity.sh" bash'
--tab -T bash
--working-directory=/home/stefan/oximity
...
That way, the commands are jobs of that shell which means you can suspend them with Ctrl-Z and resume them later with fg/bg
as if you had entered them at the prompt of that interactive shell.
That assumes though that you don't set the $PROMPT_COMMAND
in your ~/.bashrc
. Also note that the exit status of the command will not be available in $?
.
To make it even more like the command was entered at the shell prompt you can even add it to the history list. Like:
xfce4-terminal -T /etc/motd -e 'env PROMPT_COMMAND="
unset PROMPT_COMMAND
history -s vi /etc/motd
vi /etc/motd" bash'
That way, once you exit vi
, you can press the Up key to recall that same vi
command.
An easier way to write it:
PROMPT_COMMAND='unset PROMPT_COMMAND; history -s "$CMD"; eval "$CMD"'
xfce4-terminal --disable-server
-T /etc/motd -e 'env CMD="vi /etc/motd" bash'
--tab -T top -e 'env CMD=top bash'
The:
xfce4-terminal -e 'sh -c "cmd; exec bash"'
solution as given in other answers works but has some drawbacks:
- If you press Ctrl-C while
cmd
is running, that kills the outersh
since there's only one process group for bothsh
andcmd
. - You can't use Ctrl-Z to suspend
cmd
- Like in the
$PROMPT_COMMAND
approach, the exit status of the command will not be available in$?
.
You can work around 1 above by doing:
xfce4-terminal -e 'sh -c "trap : INT; cmd; exec bash"'
Or:
xfce4-terminal -e 'sh -ic "cmd; exec bash"'
With that latter one, you'll also be able to suspend the process with Ctrl-Z, but you won't be able to use fg/bg
on it. You'll be able to continue it in background though by doing a kill -s CONT
on the pid of cmd
.
Wow. That is pretty complicated, but it seems to work. :) I don't know why the reward vanished. Unfortuantely I hadn't time before to test the hints.
– user unknown
Jun 2 '13 at 21:52
I don't really understand all rules of the bounty system. Since I think you deserve the bounty, I restart a new bounty.
– user unknown
Jun 2 '13 at 21:59
Yeah the bounties expire after 7 days, and you have 24 hours afterwards to award them. If you don't aware them they get assigned to whatever user has the highest rep (2 or higher). Here's more than you ever wanted to know about bounties 8-): meta.stackexchange.com/questions/16065/…
– slm♦
Jun 2 '13 at 22:25
1
@AdrianLopez, inbash
scripts, there's no history at all as there's no line editing or user interaction unless you useread -e
in your script (and you'll see thathistory -s text
works there to prime the history seen by thatread -e
). Here, we're not runninghistory -s
from a script, but from the$PROMPT_COMMAND
hook of an interactive shell.
– Stéphane Chazelas
Aug 25 '17 at 13:42
1
@StéphaneChazelas Amazing. Following your other valuable answer here, I must add thatxfce4-terminal
as at least of version 0.6.3 now wants an extra parameter ----disable-server
-- to pass through environment. Ref: lists.debian.org/debian-user/2017/10/msg00045.html .
– ジョージ
Dec 11 at 11:14
|
show 4 more comments
As far as I understood your question, you want to run some processes in a terminal, being able to Ctrl+C them and, after that, keep the window open, with the shell.
If I am right, this could be accomplished with a command like this:
xfce4-terminal -e "bash -c 'COMMAND; exec bash'"
Does it work with multiple tabs?
– user unknown
May 27 '13 at 6:50
@userunknown Sure. Just add --tab before the other commands. For example, if you wanted to run "ls /etc" and "ls /dev", you would issue: xfce4-terminal -e "bash -c 'ls /etc; exec bash'" --tab -e "bash -c 'ls /dev; exec bash'" If you use Gnome Terminal, you have to write --tab also before the first command.
– Rafael Cavalcanti
May 27 '13 at 8:00
This is a little helpful, while not as far as I hoped for. When I start gradle with `xfce4-terminal --working-directory=/home/stefan/oximity/med -e "bash -c 'gradle explodedWar explodedWarSync;bash'" ` a tab is opened, named but it shows "gradle: command not found" while entering the command there works fine. Git, mysql and scala work fine that way, but for jboss, Ctrl-C terminates the whole jboss-tab. I could only prepare the shell starting there - maybe echoing the command to input. I don't really understand what's making the differences here.
– user unknown
Jun 2 '13 at 21:11
add a comment |
multiple apps in xfce4-terminal
tabs
Adding an interactive shell to each xfce tab
You can use this hack to add a shell if/when you Ctrl+C a tab:
$ xfce4-terminal -H
--tab -T bash -e "bash -c 'top;bash'"
--tab -T git -e "bash -c 'top;bash'"
This will give you the following:
add a comment |
When exiting the shell without -H
the terminal will be closed, too. With this flag the terminal will keep running, but the shell process is closed and cannot be revived.
I think you are trying to archieve that you just start your terminal and your development environment starts up?
You may create a shell script and put all your commands inside it. At the end of the script you just start your shell:
#!/bin/sh
gradle &
git &
... &
.... &
jboss &
$SHELL
# some cleanup commands if needed
Then call this script via xfce4-terminal -e /the/script
. When quitting from $SHELL
the parent process (your script) finished and the background tasks will receive the exit signal and quit, too.
If you want to keep them alive, use e.g. nohup jboss &
in your script
That doesn't work because gradle and jboss are permanently producing output. You don't like to have them mix up their output. The database- and scala-terminal are interactive. There is no sense in putting them into the background. The idea to open other commands in different tabs is, that the history is only filled with few different commands to one topic and therefore fast browsable.
– user unknown
May 25 '13 at 8:07
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f75902%2fhow-to-run-xfce-terminal-with-different-commands-per-tab-and-keep-using-the-tabs%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
The -H/-hold
option is to keep the terminal emulator Window open once the applications started in it (shell or other) has exited. In that state, nothing more can happen.
If you want to start a command as a job of an interactive shell in the xfce4-terminal terminal emulator and keep the shell running and use it interactively after the application has exited, with bash
, you can make use of the $PROMPT_COMMAND
environment variable, to have xfce-terminal
start an interactive shell that starts the given command just before the first prompt.
xfce4-terminal
-T eclipse
--working-directory=/home/stefan/oximity
-e 'env PROMPT_COMMAND="unset PROMPT_COMMAND; /opt/eclipse/eclipse" bash'
--tab -T arandr
--working-directory=/home/stefan/oximity
-e 'env PROMPT_COMMAND="unset PROMPT_COMMAND; arandr /home/stefan/.screenlayout/oximity.sh" bash'
--tab -T bash
--working-directory=/home/stefan/oximity
...
That way, the commands are jobs of that shell which means you can suspend them with Ctrl-Z and resume them later with fg/bg
as if you had entered them at the prompt of that interactive shell.
That assumes though that you don't set the $PROMPT_COMMAND
in your ~/.bashrc
. Also note that the exit status of the command will not be available in $?
.
To make it even more like the command was entered at the shell prompt you can even add it to the history list. Like:
xfce4-terminal -T /etc/motd -e 'env PROMPT_COMMAND="
unset PROMPT_COMMAND
history -s vi /etc/motd
vi /etc/motd" bash'
That way, once you exit vi
, you can press the Up key to recall that same vi
command.
An easier way to write it:
PROMPT_COMMAND='unset PROMPT_COMMAND; history -s "$CMD"; eval "$CMD"'
xfce4-terminal --disable-server
-T /etc/motd -e 'env CMD="vi /etc/motd" bash'
--tab -T top -e 'env CMD=top bash'
The:
xfce4-terminal -e 'sh -c "cmd; exec bash"'
solution as given in other answers works but has some drawbacks:
- If you press Ctrl-C while
cmd
is running, that kills the outersh
since there's only one process group for bothsh
andcmd
. - You can't use Ctrl-Z to suspend
cmd
- Like in the
$PROMPT_COMMAND
approach, the exit status of the command will not be available in$?
.
You can work around 1 above by doing:
xfce4-terminal -e 'sh -c "trap : INT; cmd; exec bash"'
Or:
xfce4-terminal -e 'sh -ic "cmd; exec bash"'
With that latter one, you'll also be able to suspend the process with Ctrl-Z, but you won't be able to use fg/bg
on it. You'll be able to continue it in background though by doing a kill -s CONT
on the pid of cmd
.
Wow. That is pretty complicated, but it seems to work. :) I don't know why the reward vanished. Unfortuantely I hadn't time before to test the hints.
– user unknown
Jun 2 '13 at 21:52
I don't really understand all rules of the bounty system. Since I think you deserve the bounty, I restart a new bounty.
– user unknown
Jun 2 '13 at 21:59
Yeah the bounties expire after 7 days, and you have 24 hours afterwards to award them. If you don't aware them they get assigned to whatever user has the highest rep (2 or higher). Here's more than you ever wanted to know about bounties 8-): meta.stackexchange.com/questions/16065/…
– slm♦
Jun 2 '13 at 22:25
1
@AdrianLopez, inbash
scripts, there's no history at all as there's no line editing or user interaction unless you useread -e
in your script (and you'll see thathistory -s text
works there to prime the history seen by thatread -e
). Here, we're not runninghistory -s
from a script, but from the$PROMPT_COMMAND
hook of an interactive shell.
– Stéphane Chazelas
Aug 25 '17 at 13:42
1
@StéphaneChazelas Amazing. Following your other valuable answer here, I must add thatxfce4-terminal
as at least of version 0.6.3 now wants an extra parameter ----disable-server
-- to pass through environment. Ref: lists.debian.org/debian-user/2017/10/msg00045.html .
– ジョージ
Dec 11 at 11:14
|
show 4 more comments
The -H/-hold
option is to keep the terminal emulator Window open once the applications started in it (shell or other) has exited. In that state, nothing more can happen.
If you want to start a command as a job of an interactive shell in the xfce4-terminal terminal emulator and keep the shell running and use it interactively after the application has exited, with bash
, you can make use of the $PROMPT_COMMAND
environment variable, to have xfce-terminal
start an interactive shell that starts the given command just before the first prompt.
xfce4-terminal
-T eclipse
--working-directory=/home/stefan/oximity
-e 'env PROMPT_COMMAND="unset PROMPT_COMMAND; /opt/eclipse/eclipse" bash'
--tab -T arandr
--working-directory=/home/stefan/oximity
-e 'env PROMPT_COMMAND="unset PROMPT_COMMAND; arandr /home/stefan/.screenlayout/oximity.sh" bash'
--tab -T bash
--working-directory=/home/stefan/oximity
...
That way, the commands are jobs of that shell which means you can suspend them with Ctrl-Z and resume them later with fg/bg
as if you had entered them at the prompt of that interactive shell.
That assumes though that you don't set the $PROMPT_COMMAND
in your ~/.bashrc
. Also note that the exit status of the command will not be available in $?
.
To make it even more like the command was entered at the shell prompt you can even add it to the history list. Like:
xfce4-terminal -T /etc/motd -e 'env PROMPT_COMMAND="
unset PROMPT_COMMAND
history -s vi /etc/motd
vi /etc/motd" bash'
That way, once you exit vi
, you can press the Up key to recall that same vi
command.
An easier way to write it:
PROMPT_COMMAND='unset PROMPT_COMMAND; history -s "$CMD"; eval "$CMD"'
xfce4-terminal --disable-server
-T /etc/motd -e 'env CMD="vi /etc/motd" bash'
--tab -T top -e 'env CMD=top bash'
The:
xfce4-terminal -e 'sh -c "cmd; exec bash"'
solution as given in other answers works but has some drawbacks:
- If you press Ctrl-C while
cmd
is running, that kills the outersh
since there's only one process group for bothsh
andcmd
. - You can't use Ctrl-Z to suspend
cmd
- Like in the
$PROMPT_COMMAND
approach, the exit status of the command will not be available in$?
.
You can work around 1 above by doing:
xfce4-terminal -e 'sh -c "trap : INT; cmd; exec bash"'
Or:
xfce4-terminal -e 'sh -ic "cmd; exec bash"'
With that latter one, you'll also be able to suspend the process with Ctrl-Z, but you won't be able to use fg/bg
on it. You'll be able to continue it in background though by doing a kill -s CONT
on the pid of cmd
.
Wow. That is pretty complicated, but it seems to work. :) I don't know why the reward vanished. Unfortuantely I hadn't time before to test the hints.
– user unknown
Jun 2 '13 at 21:52
I don't really understand all rules of the bounty system. Since I think you deserve the bounty, I restart a new bounty.
– user unknown
Jun 2 '13 at 21:59
Yeah the bounties expire after 7 days, and you have 24 hours afterwards to award them. If you don't aware them they get assigned to whatever user has the highest rep (2 or higher). Here's more than you ever wanted to know about bounties 8-): meta.stackexchange.com/questions/16065/…
– slm♦
Jun 2 '13 at 22:25
1
@AdrianLopez, inbash
scripts, there's no history at all as there's no line editing or user interaction unless you useread -e
in your script (and you'll see thathistory -s text
works there to prime the history seen by thatread -e
). Here, we're not runninghistory -s
from a script, but from the$PROMPT_COMMAND
hook of an interactive shell.
– Stéphane Chazelas
Aug 25 '17 at 13:42
1
@StéphaneChazelas Amazing. Following your other valuable answer here, I must add thatxfce4-terminal
as at least of version 0.6.3 now wants an extra parameter ----disable-server
-- to pass through environment. Ref: lists.debian.org/debian-user/2017/10/msg00045.html .
– ジョージ
Dec 11 at 11:14
|
show 4 more comments
The -H/-hold
option is to keep the terminal emulator Window open once the applications started in it (shell or other) has exited. In that state, nothing more can happen.
If you want to start a command as a job of an interactive shell in the xfce4-terminal terminal emulator and keep the shell running and use it interactively after the application has exited, with bash
, you can make use of the $PROMPT_COMMAND
environment variable, to have xfce-terminal
start an interactive shell that starts the given command just before the first prompt.
xfce4-terminal
-T eclipse
--working-directory=/home/stefan/oximity
-e 'env PROMPT_COMMAND="unset PROMPT_COMMAND; /opt/eclipse/eclipse" bash'
--tab -T arandr
--working-directory=/home/stefan/oximity
-e 'env PROMPT_COMMAND="unset PROMPT_COMMAND; arandr /home/stefan/.screenlayout/oximity.sh" bash'
--tab -T bash
--working-directory=/home/stefan/oximity
...
That way, the commands are jobs of that shell which means you can suspend them with Ctrl-Z and resume them later with fg/bg
as if you had entered them at the prompt of that interactive shell.
That assumes though that you don't set the $PROMPT_COMMAND
in your ~/.bashrc
. Also note that the exit status of the command will not be available in $?
.
To make it even more like the command was entered at the shell prompt you can even add it to the history list. Like:
xfce4-terminal -T /etc/motd -e 'env PROMPT_COMMAND="
unset PROMPT_COMMAND
history -s vi /etc/motd
vi /etc/motd" bash'
That way, once you exit vi
, you can press the Up key to recall that same vi
command.
An easier way to write it:
PROMPT_COMMAND='unset PROMPT_COMMAND; history -s "$CMD"; eval "$CMD"'
xfce4-terminal --disable-server
-T /etc/motd -e 'env CMD="vi /etc/motd" bash'
--tab -T top -e 'env CMD=top bash'
The:
xfce4-terminal -e 'sh -c "cmd; exec bash"'
solution as given in other answers works but has some drawbacks:
- If you press Ctrl-C while
cmd
is running, that kills the outersh
since there's only one process group for bothsh
andcmd
. - You can't use Ctrl-Z to suspend
cmd
- Like in the
$PROMPT_COMMAND
approach, the exit status of the command will not be available in$?
.
You can work around 1 above by doing:
xfce4-terminal -e 'sh -c "trap : INT; cmd; exec bash"'
Or:
xfce4-terminal -e 'sh -ic "cmd; exec bash"'
With that latter one, you'll also be able to suspend the process with Ctrl-Z, but you won't be able to use fg/bg
on it. You'll be able to continue it in background though by doing a kill -s CONT
on the pid of cmd
.
The -H/-hold
option is to keep the terminal emulator Window open once the applications started in it (shell or other) has exited. In that state, nothing more can happen.
If you want to start a command as a job of an interactive shell in the xfce4-terminal terminal emulator and keep the shell running and use it interactively after the application has exited, with bash
, you can make use of the $PROMPT_COMMAND
environment variable, to have xfce-terminal
start an interactive shell that starts the given command just before the first prompt.
xfce4-terminal
-T eclipse
--working-directory=/home/stefan/oximity
-e 'env PROMPT_COMMAND="unset PROMPT_COMMAND; /opt/eclipse/eclipse" bash'
--tab -T arandr
--working-directory=/home/stefan/oximity
-e 'env PROMPT_COMMAND="unset PROMPT_COMMAND; arandr /home/stefan/.screenlayout/oximity.sh" bash'
--tab -T bash
--working-directory=/home/stefan/oximity
...
That way, the commands are jobs of that shell which means you can suspend them with Ctrl-Z and resume them later with fg/bg
as if you had entered them at the prompt of that interactive shell.
That assumes though that you don't set the $PROMPT_COMMAND
in your ~/.bashrc
. Also note that the exit status of the command will not be available in $?
.
To make it even more like the command was entered at the shell prompt you can even add it to the history list. Like:
xfce4-terminal -T /etc/motd -e 'env PROMPT_COMMAND="
unset PROMPT_COMMAND
history -s vi /etc/motd
vi /etc/motd" bash'
That way, once you exit vi
, you can press the Up key to recall that same vi
command.
An easier way to write it:
PROMPT_COMMAND='unset PROMPT_COMMAND; history -s "$CMD"; eval "$CMD"'
xfce4-terminal --disable-server
-T /etc/motd -e 'env CMD="vi /etc/motd" bash'
--tab -T top -e 'env CMD=top bash'
The:
xfce4-terminal -e 'sh -c "cmd; exec bash"'
solution as given in other answers works but has some drawbacks:
- If you press Ctrl-C while
cmd
is running, that kills the outersh
since there's only one process group for bothsh
andcmd
. - You can't use Ctrl-Z to suspend
cmd
- Like in the
$PROMPT_COMMAND
approach, the exit status of the command will not be available in$?
.
You can work around 1 above by doing:
xfce4-terminal -e 'sh -c "trap : INT; cmd; exec bash"'
Or:
xfce4-terminal -e 'sh -ic "cmd; exec bash"'
With that latter one, you'll also be able to suspend the process with Ctrl-Z, but you won't be able to use fg/bg
on it. You'll be able to continue it in background though by doing a kill -s CONT
on the pid of cmd
.
edited Dec 11 at 11:17
ジョージ
44559
44559
answered May 29 '13 at 19:53
Stéphane Chazelas
298k54563910
298k54563910
Wow. That is pretty complicated, but it seems to work. :) I don't know why the reward vanished. Unfortuantely I hadn't time before to test the hints.
– user unknown
Jun 2 '13 at 21:52
I don't really understand all rules of the bounty system. Since I think you deserve the bounty, I restart a new bounty.
– user unknown
Jun 2 '13 at 21:59
Yeah the bounties expire after 7 days, and you have 24 hours afterwards to award them. If you don't aware them they get assigned to whatever user has the highest rep (2 or higher). Here's more than you ever wanted to know about bounties 8-): meta.stackexchange.com/questions/16065/…
– slm♦
Jun 2 '13 at 22:25
1
@AdrianLopez, inbash
scripts, there's no history at all as there's no line editing or user interaction unless you useread -e
in your script (and you'll see thathistory -s text
works there to prime the history seen by thatread -e
). Here, we're not runninghistory -s
from a script, but from the$PROMPT_COMMAND
hook of an interactive shell.
– Stéphane Chazelas
Aug 25 '17 at 13:42
1
@StéphaneChazelas Amazing. Following your other valuable answer here, I must add thatxfce4-terminal
as at least of version 0.6.3 now wants an extra parameter ----disable-server
-- to pass through environment. Ref: lists.debian.org/debian-user/2017/10/msg00045.html .
– ジョージ
Dec 11 at 11:14
|
show 4 more comments
Wow. That is pretty complicated, but it seems to work. :) I don't know why the reward vanished. Unfortuantely I hadn't time before to test the hints.
– user unknown
Jun 2 '13 at 21:52
I don't really understand all rules of the bounty system. Since I think you deserve the bounty, I restart a new bounty.
– user unknown
Jun 2 '13 at 21:59
Yeah the bounties expire after 7 days, and you have 24 hours afterwards to award them. If you don't aware them they get assigned to whatever user has the highest rep (2 or higher). Here's more than you ever wanted to know about bounties 8-): meta.stackexchange.com/questions/16065/…
– slm♦
Jun 2 '13 at 22:25
1
@AdrianLopez, inbash
scripts, there's no history at all as there's no line editing or user interaction unless you useread -e
in your script (and you'll see thathistory -s text
works there to prime the history seen by thatread -e
). Here, we're not runninghistory -s
from a script, but from the$PROMPT_COMMAND
hook of an interactive shell.
– Stéphane Chazelas
Aug 25 '17 at 13:42
1
@StéphaneChazelas Amazing. Following your other valuable answer here, I must add thatxfce4-terminal
as at least of version 0.6.3 now wants an extra parameter ----disable-server
-- to pass through environment. Ref: lists.debian.org/debian-user/2017/10/msg00045.html .
– ジョージ
Dec 11 at 11:14
Wow. That is pretty complicated, but it seems to work. :) I don't know why the reward vanished. Unfortuantely I hadn't time before to test the hints.
– user unknown
Jun 2 '13 at 21:52
Wow. That is pretty complicated, but it seems to work. :) I don't know why the reward vanished. Unfortuantely I hadn't time before to test the hints.
– user unknown
Jun 2 '13 at 21:52
I don't really understand all rules of the bounty system. Since I think you deserve the bounty, I restart a new bounty.
– user unknown
Jun 2 '13 at 21:59
I don't really understand all rules of the bounty system. Since I think you deserve the bounty, I restart a new bounty.
– user unknown
Jun 2 '13 at 21:59
Yeah the bounties expire after 7 days, and you have 24 hours afterwards to award them. If you don't aware them they get assigned to whatever user has the highest rep (2 or higher). Here's more than you ever wanted to know about bounties 8-): meta.stackexchange.com/questions/16065/…
– slm♦
Jun 2 '13 at 22:25
Yeah the bounties expire after 7 days, and you have 24 hours afterwards to award them. If you don't aware them they get assigned to whatever user has the highest rep (2 or higher). Here's more than you ever wanted to know about bounties 8-): meta.stackexchange.com/questions/16065/…
– slm♦
Jun 2 '13 at 22:25
1
1
@AdrianLopez, in
bash
scripts, there's no history at all as there's no line editing or user interaction unless you use read -e
in your script (and you'll see that history -s text
works there to prime the history seen by that read -e
). Here, we're not running history -s
from a script, but from the $PROMPT_COMMAND
hook of an interactive shell.– Stéphane Chazelas
Aug 25 '17 at 13:42
@AdrianLopez, in
bash
scripts, there's no history at all as there's no line editing or user interaction unless you use read -e
in your script (and you'll see that history -s text
works there to prime the history seen by that read -e
). Here, we're not running history -s
from a script, but from the $PROMPT_COMMAND
hook of an interactive shell.– Stéphane Chazelas
Aug 25 '17 at 13:42
1
1
@StéphaneChazelas Amazing. Following your other valuable answer here, I must add that
xfce4-terminal
as at least of version 0.6.3 now wants an extra parameter -- --disable-server
-- to pass through environment. Ref: lists.debian.org/debian-user/2017/10/msg00045.html .– ジョージ
Dec 11 at 11:14
@StéphaneChazelas Amazing. Following your other valuable answer here, I must add that
xfce4-terminal
as at least of version 0.6.3 now wants an extra parameter -- --disable-server
-- to pass through environment. Ref: lists.debian.org/debian-user/2017/10/msg00045.html .– ジョージ
Dec 11 at 11:14
|
show 4 more comments
As far as I understood your question, you want to run some processes in a terminal, being able to Ctrl+C them and, after that, keep the window open, with the shell.
If I am right, this could be accomplished with a command like this:
xfce4-terminal -e "bash -c 'COMMAND; exec bash'"
Does it work with multiple tabs?
– user unknown
May 27 '13 at 6:50
@userunknown Sure. Just add --tab before the other commands. For example, if you wanted to run "ls /etc" and "ls /dev", you would issue: xfce4-terminal -e "bash -c 'ls /etc; exec bash'" --tab -e "bash -c 'ls /dev; exec bash'" If you use Gnome Terminal, you have to write --tab also before the first command.
– Rafael Cavalcanti
May 27 '13 at 8:00
This is a little helpful, while not as far as I hoped for. When I start gradle with `xfce4-terminal --working-directory=/home/stefan/oximity/med -e "bash -c 'gradle explodedWar explodedWarSync;bash'" ` a tab is opened, named but it shows "gradle: command not found" while entering the command there works fine. Git, mysql and scala work fine that way, but for jboss, Ctrl-C terminates the whole jboss-tab. I could only prepare the shell starting there - maybe echoing the command to input. I don't really understand what's making the differences here.
– user unknown
Jun 2 '13 at 21:11
add a comment |
As far as I understood your question, you want to run some processes in a terminal, being able to Ctrl+C them and, after that, keep the window open, with the shell.
If I am right, this could be accomplished with a command like this:
xfce4-terminal -e "bash -c 'COMMAND; exec bash'"
Does it work with multiple tabs?
– user unknown
May 27 '13 at 6:50
@userunknown Sure. Just add --tab before the other commands. For example, if you wanted to run "ls /etc" and "ls /dev", you would issue: xfce4-terminal -e "bash -c 'ls /etc; exec bash'" --tab -e "bash -c 'ls /dev; exec bash'" If you use Gnome Terminal, you have to write --tab also before the first command.
– Rafael Cavalcanti
May 27 '13 at 8:00
This is a little helpful, while not as far as I hoped for. When I start gradle with `xfce4-terminal --working-directory=/home/stefan/oximity/med -e "bash -c 'gradle explodedWar explodedWarSync;bash'" ` a tab is opened, named but it shows "gradle: command not found" while entering the command there works fine. Git, mysql and scala work fine that way, but for jboss, Ctrl-C terminates the whole jboss-tab. I could only prepare the shell starting there - maybe echoing the command to input. I don't really understand what's making the differences here.
– user unknown
Jun 2 '13 at 21:11
add a comment |
As far as I understood your question, you want to run some processes in a terminal, being able to Ctrl+C them and, after that, keep the window open, with the shell.
If I am right, this could be accomplished with a command like this:
xfce4-terminal -e "bash -c 'COMMAND; exec bash'"
As far as I understood your question, you want to run some processes in a terminal, being able to Ctrl+C them and, after that, keep the window open, with the shell.
If I am right, this could be accomplished with a command like this:
xfce4-terminal -e "bash -c 'COMMAND; exec bash'"
edited May 26 '13 at 8:40
Anthon
60.2k17102163
60.2k17102163
answered May 26 '13 at 8:20
Rafael Cavalcanti
54646
54646
Does it work with multiple tabs?
– user unknown
May 27 '13 at 6:50
@userunknown Sure. Just add --tab before the other commands. For example, if you wanted to run "ls /etc" and "ls /dev", you would issue: xfce4-terminal -e "bash -c 'ls /etc; exec bash'" --tab -e "bash -c 'ls /dev; exec bash'" If you use Gnome Terminal, you have to write --tab also before the first command.
– Rafael Cavalcanti
May 27 '13 at 8:00
This is a little helpful, while not as far as I hoped for. When I start gradle with `xfce4-terminal --working-directory=/home/stefan/oximity/med -e "bash -c 'gradle explodedWar explodedWarSync;bash'" ` a tab is opened, named but it shows "gradle: command not found" while entering the command there works fine. Git, mysql and scala work fine that way, but for jboss, Ctrl-C terminates the whole jboss-tab. I could only prepare the shell starting there - maybe echoing the command to input. I don't really understand what's making the differences here.
– user unknown
Jun 2 '13 at 21:11
add a comment |
Does it work with multiple tabs?
– user unknown
May 27 '13 at 6:50
@userunknown Sure. Just add --tab before the other commands. For example, if you wanted to run "ls /etc" and "ls /dev", you would issue: xfce4-terminal -e "bash -c 'ls /etc; exec bash'" --tab -e "bash -c 'ls /dev; exec bash'" If you use Gnome Terminal, you have to write --tab also before the first command.
– Rafael Cavalcanti
May 27 '13 at 8:00
This is a little helpful, while not as far as I hoped for. When I start gradle with `xfce4-terminal --working-directory=/home/stefan/oximity/med -e "bash -c 'gradle explodedWar explodedWarSync;bash'" ` a tab is opened, named but it shows "gradle: command not found" while entering the command there works fine. Git, mysql and scala work fine that way, but for jboss, Ctrl-C terminates the whole jboss-tab. I could only prepare the shell starting there - maybe echoing the command to input. I don't really understand what's making the differences here.
– user unknown
Jun 2 '13 at 21:11
Does it work with multiple tabs?
– user unknown
May 27 '13 at 6:50
Does it work with multiple tabs?
– user unknown
May 27 '13 at 6:50
@userunknown Sure. Just add --tab before the other commands. For example, if you wanted to run "ls /etc" and "ls /dev", you would issue: xfce4-terminal -e "bash -c 'ls /etc; exec bash'" --tab -e "bash -c 'ls /dev; exec bash'" If you use Gnome Terminal, you have to write --tab also before the first command.
– Rafael Cavalcanti
May 27 '13 at 8:00
@userunknown Sure. Just add --tab before the other commands. For example, if you wanted to run "ls /etc" and "ls /dev", you would issue: xfce4-terminal -e "bash -c 'ls /etc; exec bash'" --tab -e "bash -c 'ls /dev; exec bash'" If you use Gnome Terminal, you have to write --tab also before the first command.
– Rafael Cavalcanti
May 27 '13 at 8:00
This is a little helpful, while not as far as I hoped for. When I start gradle with `xfce4-terminal --working-directory=/home/stefan/oximity/med -e "bash -c 'gradle explodedWar explodedWarSync;bash'" ` a tab is opened, named but it shows "gradle: command not found" while entering the command there works fine. Git, mysql and scala work fine that way, but for jboss, Ctrl-C terminates the whole jboss-tab. I could only prepare the shell starting there - maybe echoing the command to input. I don't really understand what's making the differences here.
– user unknown
Jun 2 '13 at 21:11
This is a little helpful, while not as far as I hoped for. When I start gradle with `xfce4-terminal --working-directory=/home/stefan/oximity/med -e "bash -c 'gradle explodedWar explodedWarSync;bash'" ` a tab is opened, named but it shows "gradle: command not found" while entering the command there works fine. Git, mysql and scala work fine that way, but for jboss, Ctrl-C terminates the whole jboss-tab. I could only prepare the shell starting there - maybe echoing the command to input. I don't really understand what's making the differences here.
– user unknown
Jun 2 '13 at 21:11
add a comment |
multiple apps in xfce4-terminal
tabs
Adding an interactive shell to each xfce tab
You can use this hack to add a shell if/when you Ctrl+C a tab:
$ xfce4-terminal -H
--tab -T bash -e "bash -c 'top;bash'"
--tab -T git -e "bash -c 'top;bash'"
This will give you the following:
add a comment |
multiple apps in xfce4-terminal
tabs
Adding an interactive shell to each xfce tab
You can use this hack to add a shell if/when you Ctrl+C a tab:
$ xfce4-terminal -H
--tab -T bash -e "bash -c 'top;bash'"
--tab -T git -e "bash -c 'top;bash'"
This will give you the following:
add a comment |
multiple apps in xfce4-terminal
tabs
Adding an interactive shell to each xfce tab
You can use this hack to add a shell if/when you Ctrl+C a tab:
$ xfce4-terminal -H
--tab -T bash -e "bash -c 'top;bash'"
--tab -T git -e "bash -c 'top;bash'"
This will give you the following:
multiple apps in xfce4-terminal
tabs
Adding an interactive shell to each xfce tab
You can use this hack to add a shell if/when you Ctrl+C a tab:
$ xfce4-terminal -H
--tab -T bash -e "bash -c 'top;bash'"
--tab -T git -e "bash -c 'top;bash'"
This will give you the following:
edited Jun 2 '13 at 22:19
answered May 24 '13 at 8:51
slm♦
246k66507673
246k66507673
add a comment |
add a comment |
When exiting the shell without -H
the terminal will be closed, too. With this flag the terminal will keep running, but the shell process is closed and cannot be revived.
I think you are trying to archieve that you just start your terminal and your development environment starts up?
You may create a shell script and put all your commands inside it. At the end of the script you just start your shell:
#!/bin/sh
gradle &
git &
... &
.... &
jboss &
$SHELL
# some cleanup commands if needed
Then call this script via xfce4-terminal -e /the/script
. When quitting from $SHELL
the parent process (your script) finished and the background tasks will receive the exit signal and quit, too.
If you want to keep them alive, use e.g. nohup jboss &
in your script
That doesn't work because gradle and jboss are permanently producing output. You don't like to have them mix up their output. The database- and scala-terminal are interactive. There is no sense in putting them into the background. The idea to open other commands in different tabs is, that the history is only filled with few different commands to one topic and therefore fast browsable.
– user unknown
May 25 '13 at 8:07
add a comment |
When exiting the shell without -H
the terminal will be closed, too. With this flag the terminal will keep running, but the shell process is closed and cannot be revived.
I think you are trying to archieve that you just start your terminal and your development environment starts up?
You may create a shell script and put all your commands inside it. At the end of the script you just start your shell:
#!/bin/sh
gradle &
git &
... &
.... &
jboss &
$SHELL
# some cleanup commands if needed
Then call this script via xfce4-terminal -e /the/script
. When quitting from $SHELL
the parent process (your script) finished and the background tasks will receive the exit signal and quit, too.
If you want to keep them alive, use e.g. nohup jboss &
in your script
That doesn't work because gradle and jboss are permanently producing output. You don't like to have them mix up their output. The database- and scala-terminal are interactive. There is no sense in putting them into the background. The idea to open other commands in different tabs is, that the history is only filled with few different commands to one topic and therefore fast browsable.
– user unknown
May 25 '13 at 8:07
add a comment |
When exiting the shell without -H
the terminal will be closed, too. With this flag the terminal will keep running, but the shell process is closed and cannot be revived.
I think you are trying to archieve that you just start your terminal and your development environment starts up?
You may create a shell script and put all your commands inside it. At the end of the script you just start your shell:
#!/bin/sh
gradle &
git &
... &
.... &
jboss &
$SHELL
# some cleanup commands if needed
Then call this script via xfce4-terminal -e /the/script
. When quitting from $SHELL
the parent process (your script) finished and the background tasks will receive the exit signal and quit, too.
If you want to keep them alive, use e.g. nohup jboss &
in your script
When exiting the shell without -H
the terminal will be closed, too. With this flag the terminal will keep running, but the shell process is closed and cannot be revived.
I think you are trying to archieve that you just start your terminal and your development environment starts up?
You may create a shell script and put all your commands inside it. At the end of the script you just start your shell:
#!/bin/sh
gradle &
git &
... &
.... &
jboss &
$SHELL
# some cleanup commands if needed
Then call this script via xfce4-terminal -e /the/script
. When quitting from $SHELL
the parent process (your script) finished and the background tasks will receive the exit signal and quit, too.
If you want to keep them alive, use e.g. nohup jboss &
in your script
answered May 24 '13 at 8:55
krissi
49839
49839
That doesn't work because gradle and jboss are permanently producing output. You don't like to have them mix up their output. The database- and scala-terminal are interactive. There is no sense in putting them into the background. The idea to open other commands in different tabs is, that the history is only filled with few different commands to one topic and therefore fast browsable.
– user unknown
May 25 '13 at 8:07
add a comment |
That doesn't work because gradle and jboss are permanently producing output. You don't like to have them mix up their output. The database- and scala-terminal are interactive. There is no sense in putting them into the background. The idea to open other commands in different tabs is, that the history is only filled with few different commands to one topic and therefore fast browsable.
– user unknown
May 25 '13 at 8:07
That doesn't work because gradle and jboss are permanently producing output. You don't like to have them mix up their output. The database- and scala-terminal are interactive. There is no sense in putting them into the background. The idea to open other commands in different tabs is, that the history is only filled with few different commands to one topic and therefore fast browsable.
– user unknown
May 25 '13 at 8:07
That doesn't work because gradle and jboss are permanently producing output. You don't like to have them mix up their output. The database- and scala-terminal are interactive. There is no sense in putting them into the background. The idea to open other commands in different tabs is, that the history is only filled with few different commands to one topic and therefore fast browsable.
– user unknown
May 25 '13 at 8:07
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2funix.stackexchange.com%2fquestions%2f75902%2fhow-to-run-xfce-terminal-with-different-commands-per-tab-and-keep-using-the-tabs%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
Your question is still unclear to me. You want a terminal to revert to shell once the command it was started with terminates? Something like
xterm -e 'stuff;bash'
?– frostschutz
May 25 '13 at 9:48
1
This question still needs work! I found this thread, I think this is what the OP is looking for: How to keep xfce4-terminal open?. He wants to know how to access a tab where the "-H" switch has been used and continue to use it as a normal terminal window. OP, can you please confirm if I'm correct?
– slm♦
May 25 '13 at 12:54
@slm: Yes, I like to keep the terminal open to process further commands - I just like to start the first of my commands automatically and have multiple, named tabs.
– user unknown
May 25 '13 at 13:03