wickedchicken
wickedchicken

Reputation: 4763

pass array into vararg in ruby?

The ruby exec() function takes a vararg for its second parameter to provide arguments to the program being executed. However, I would like to pass an array of arguments (for various reasons). I could work around this by just giving exec a completed string but that involves the shell (and escaping possible parameters). Additionally, as far as I can tell, collapsing the arguments into one string will pass them as one argument to my program -- I want their distinctness to be preserved. Is it possible to pass an array to a varargs argument in a ruby function? (note that, in this case, I can't modify exec() to accept any wrapping or shifts).

Upvotes: 21

Views: 5596

Answers (1)

ryantm
ryantm

Reputation: 8417

You can use the splat operator like this:

exec("echo", *["hello","world"])

Upvotes: 38

Related Questions