Tagged Questions

1
vote
1answer
389 views

Capturing “command not found” errors from Ruby's backticks?

Is there a way to capture a "command not found" error in a Ruby script? For instance, given: output = `foo` How do I trap the situation where foo isn't installed? I expected that I could rescue an ...
1
vote
1answer
160 views

Why sshfs does not work with backtick?

When I do the following: `sshfs my@host.com /tmp/dir1/` in a irb console, the console freezes. If I use something like system("sshfs my@host.com /tmp/dir1/") it works, but I need to use backticks ...
0
votes
3answers
330 views

Ruby replace text within single quotes or backticks for html tag

Hello I am trying to build a simple action in Ruby that takes one string like result = "This is my javascript variable 'var first = 1 + 1;' and here is another 'var second = 2 + 2;' and that's it!" ...