I'm working on a project that requires me to open some new bash windows to start the docker, server, etc. of the project. I'm trying to make a script so I can start things faster. So far I have this:
#!/bin/bash
cd dev/proj/prod/;
konsole --hold --new-tab -e echo "Hello World";
The problem is that a new window is open in Konsole with the text displayed, but the bash is stuck:
.
I'm running the script with . proj.sh
.
--hold
apparently does. – Raffa Sep 01 '23 at 08:52--hold
and then either remove-e
or use-e bash
? – terdon Sep 01 '23 at 11:15