How do I call console/bash commands from inside of a Ruby Program? Also, how do I get output from these commands back into my program?
|
|
The way I like to do this is using the %x operator, which makes it easy (and readable!) to use quotes in a command, like so:
Which, in this case, will populate file list with all test files under the current directory, which you can process as expected: |
||
|
|
|
Edit: If you want to improve this script, feel free to update it it using the following link. |
|||
|
|
|
|
Some things to think about when choosing between these mechanisms are:
You may need anything from simple backticks (``), system(), and IO.popen to full-blown Kernel.fork/Kernel.exec with IO.pipe and IO.select. You may also want to throw timeouts into the mix if a subprocess takes too long to execute. Unfortunately, it very much depends. |
||
|
|
|
|
Here's the best article in my opinion about running shell scripts in ruby: 6 Ways to Run Shell Commands in Ruby If you only need to get the output use backticks. I needed more advanced stuff like STDOUT and STDERR so I used Open4 gem. You have all the methods explained there. |
||
|
|
|
|
My favourite is Open3
|
||
|
|
|
|
A good overview can be found here |
||
|
|
|
The Ruby Kernel object is one option. Check out these links: http://blog.jayfields.com/2006/06/ruby-kernel-system-exec-and-x.html |
||
|
|
|
|
Definitely not a ruby expert, but I'll give it a shot.
You should also be able to do things like... |
||
|
|
|
|
You can also use the backtick operators (`), similar to Perl:
Handy if you need something simple. Which method you want to use depends on exactly what you're trying to accomplish; check the docs for more details about the different methods. |
||
|
|
|
|
What about synchronization issues? Is there a way to get the Bash commands to execute fully before the rest of the ruby code gets executed, or test for completion? I saw in ri that system runs in a sub shell, and trying a: system("clear") at the top of my script cleared the screen after the rest of the code was done. Great info here BTW, I'm just getting started with Ruby. |
||
|
|
