I compiled hello world using g++ and ran it "Konsole" on my cygwin install. Then I tried to click the same app in KDE and instead of running it, kde tried to open it in an editor. Is there something I'm missing about linux? probably
edit: further investigation seems to show that I have to call "exec" before the executable name in a shell script to click-run something. Is that right?



LinkBack URL
About LinkBacks




It depends on what shell you're using for your script, but for the most part exec will terminate the current shell and start a new process in its place. Or, as the