I have been playing around with the Kommander Editor and have managed to get my first one working. The Kommander script outputs to a text file which is then handled by an external perl script to process the info in a terminal window. I threw together a launcher shell script that first runs the Kommander script and then upon completion runs the perl script. If I run the launcher script from the command line it runs fine.
I then made a menu entry to launch it and a desktop link but neither work. If I try to start the app from one of these links it launches the Kommander script and then exits the launcher script on exit rather than running the external perl script. I can't seem to figure out why it works from the command line but not from a desktop link. Here is the basic of the launcher script. Maybe it isnt correct?
#!/bin/bash
kmdr-executor $HOME/bin/KsomeApp/KsomeApp.kmdr
exec "./somePerlScript"
Any help would be appreciated