Exiting a ruby script

J

Jason Burgett

I'm in the process of playing around with a, application launcher
script. It's fairly far along, but I can't seem to get the script to
exit when the application is actually launched. Here's the final bit of
code:

@finalApps.each {|finalApp| if finalApp.id == runApp.to_i
updateRanking finalApp.name
symbolMatch = finalApp.command.match(/
%/)
if symbolMatch
system(symbolMatch.pre_match)
else
system(finalApp.command)
end
end
}

There's some extra stripping of the command in there. The functional
part is the internal if loop. After "system(symbolMatch.pre_match)" or
"system(finalApp.command)" the app launches properly, but in the console
the ruby script stays open until the app is closed.

Is there a way to get the ruby script to terminate immediately after the
app is successfully launched?
 
S

Stefano Crocco

Alle domenica 11 marzo 2007, Jason Burgett ha scritto:
I'm in the process of playing around with a, application launcher
script. It's fairly far along, but I can't seem to get the script to
exit when the application is actually launched. Here's the final bit of
code:

@finalApps.each {|finalApp| if finalApp.id == runApp.to_i
updateRanking finalApp.name
symbolMatch = finalApp.command.match(/
%/)
if symbolMatch
system(symbolMatch.pre_match)
else
system(finalApp.command)
end
end
}

There's some extra stripping of the command in there. The functional
part is the internal if loop. After "system(symbolMatch.pre_match)" or
"system(finalApp.command)" the app launches properly, but in the console
the ruby script stays open until the app is closed.

Is there a way to get the ruby script to terminate immediately after the
app is successfully launched?

If I understand your problem correctly, you should use exec instead of system,
which replace the ruby interpreter with the command given as argumnt.

I hope this helps

Stefano
 
J

Jason Burgett

Actually, the process still holds open while the "launched" app running.
As soon as that last enter key is pressed to launch the app I need the
ruby script to release the console.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,057
Latest member
KetoBeezACVGummies

Latest Threads

Top