Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Anybody knows, the difference of the following methods in ruby.

exec, system and %x() or Backticks

I know, they are helpful to execute the terminal command through programming way.. But, I want to know, why they introduced three different methods to execute the same process.

share|improve this question
2  
Since someone just dug up this old thread, "Working With Unix Processes" is an excellent book for Rubyists interested in the topic: workingwithunixprocesses.com – Michael Kohl Jun 24 '12 at 9:30
Hmmm.. Great! Thanks. – Mr. Black Jun 25 '12 at 10:32

3 Answers

up vote 24 down vote accepted

There is a great Ruby Quicktips article on that topic: Execute shell commands.

share|improve this answer
3  
It's a pretty short and superficial article actually. – Michiel de Mare Dec 12 '12 at 12:40
4  
It's a quick tip. – tester123 Dec 23 '12 at 22:40

They do different things. exec replaces the current process with the new process. system invokes another process and returns its exit value to the current process. backticks invokes another process and returns the output of that process to the current process.

share|improve this answer
great stuff. please expound on your answer a bit – Dave Dopson Jan 18 at 18:58

These commands, and many others, are explained quite well in the docs:

exec

system

backticks

share|improve this answer
2  
Thank you for (kindly) referencing the documentation. It seems too many people don't know where to look for basic questions like this. – David James Jun 24 '12 at 3:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.