Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

pass array into vararg in ruby?

Tags:

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).

like image 645
wickedchicken Avatar asked Mar 08 '11 01:03

wickedchicken


1 Answers

You can use the splat operator like this:

exec("echo", *["hello","world"])
like image 166
ryantm Avatar answered Nov 24 '22 00:11

ryantm