Rake: command-line params with spaces

Is it possible to pass in command-line args containing spaces to rake? I'm
on XP, and "..." and '...' don't work.

rake arg="foo bar" #=> ENV['arg'] = nil
rake arg='foo bar' #=> ENV['arg'] = nil
rake arg=foo bar #=> ENV['arg'] = foo

Thanks

Turned out to be a JEdit problem (it has various kinds of trouble emulating
a command line), nothing to do with rake. It works fine with "..." from a
DOS shell.

ยทยทยท

"itsme213" <itsme213@hotmail.com> wrote

Is it possible to pass in command-line args containing spaces to rake? I'm
on XP, and "..." and '...' don't work.