vote up 4 vote down star
1

If I call a command using system() in ruby, how do I get it's output?

e.g.

system("ls")
flag

4 Answers

vote up 4 vote down check

You use backticks:

`ls`
link|flag
vote up 0 vote down

You may want to have a look at this thread in comp.lang.ruby

link|flag
vote up 4 vote down

Another way is:

f = open("|ls")
foo = f.read()

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.

link|flag
vote up 2 vote down

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:

output = `ls`
p output
link|flag

Your Answer

Get an OpenID
or

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