3
votes
In Ruby, is it possible to concat arguments to a command line using backquotes ?
`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:
…
