This question already has an answer here:
How do you prevent gnome-terminal from exiting after its given command has exited?
I'm calling gnome-terminal from a cronjob, in order to create a terminal accessible to the user. The terminal is initially given a specific program to run. e.g.
gnome-terminal --tab -e "/usr/bin/myprog"
This works fine, except that when "myprog" exits, so does the gnome-terminal. How do I keep it running, but just drop back to a terminal prompt?
Create a profile (i.e. hold), set "When command exits: Hold the terminal open" and then
Create a shell script like this:
Give the shell script execute permission.
Then set up your cron job to call this script instead of directly calling
myprog
:Replace
/bin/bash
with your shell of choice.You could use xterm or rxvt-unicode instead of gnome-terminal, both of which have the
-hold
option for this purpose.Try this: