Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a rake task that performs a shell command. When I run it from bash, the substitution worked, but when I run the rake task, the substitution did not take place.

My rake file:

require 'rake'
namespace 'performance_tests' do
  task :test_guests_generation do

    %x{sed -e 's/NO_OF_GUESTS = \[.*]/NO_OF_GUESTS = \[400, 10]/' -i '' db/seeds.rb}
  end
end

Trying the command in Mac OS Terminal does perform the substitution:

$ sed -e 's/NO_OF_GUESTS = \[.*]/NO_OF_GUESTS = \[400, 10]/' -i '' db/seeds.rb
share|improve this question

1 Answer

up vote 0 down vote accepted

Um... not sure to be honest. Have you tried escaping the spaces? Can you paste the line you are working on and the desired result?

share|improve this answer
Escaping the spaces (and i escaped the backslash for good measure too) worked. It ended up looking like this: %x{sed -e 's/NO_OF_GUESTS\ =\ \[.*]/NO_OF_GUESTS\ =\ \[400,\ 10]/' -i '' db/seeds.rb } – cowdinosaur Jun 14 '11 at 2:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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