up vote 1 down vote favorite
share [g+] share [fb]

I would like to execute an OS command from my ruby script but I want to add an argument from a ruby variable.

I know that's possible by using keyword system like that :

#!/usr/bin/env ruby
directory = '/home/paulgreg/'
system 'ls ' + directory

but is that possible by using the "backquotes or backticks syntax" ? (I mean by using that syntax : ls)

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

No, that will just concatenate the output from ls and the contents of directory.

But you can do this:

#!/usr/bin/env ruby
directory = '/home/paulgreg/'
`ls #{directory}`
link|improve this answer
feedback
`ls #{directory}`

isn't very safe because you're going to run into problems with path names that have spaces in them.

It's safer to do something like this:

directory = '/home/paulgreg/'

args = []
args << "/bin/ls"
args << directory

system(*args)
link|improve this answer
feedback

Nick is right, but there is no need to assemble the args piecewise:

directory = '/Volumes/Omg a space/'
system('/bin/ls', directory)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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