Open Terminal with multiple tabs and execute application
- by user172001
I am new to linux shell scripting. I want to write a shell script which will open terminal with multiple tabs; it should run rtsp client app in each tab.
For this, I have gone through question here in this forum and tried to code like bellow,
tab="--tab-with-profile=Default -e "
cmd="java RunRTSPClient"
for i in 1 2 3 4 5
do
#
foo="$foo $tab $cmd"
done
gnome-terminal $foo
exit 0
This is running and opens the terminal window with tabs but suddenly it will close.
I am not getting any errors.