If I call a command using system() in ruby, how do I get it's output?
e.g.
system("ls")
|
1
|
|
|
|
|
|
You use backticks:
|
||
|
|
|
|
You may want to have a look at this thread in comp.lang.ruby |
||
|
|
|
|
Another way is:
Note that's the "pipe" character before "ls" in open. This can also be used to feed data into the programs standard input as well as reading its standard output. |
||
|
|
|
|
I'd like to expand & clarify chaos's answer a bit. If you surround your command with backticks, then you don't need to (explicitly) call system() at all. The backticks execute the command and return the output as a string. You can then assign the value to a variable like so:
|
||
|
|