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 because the system call is in a method used many times, and some of them need the return from the shell.

Any tip?

link|improve this question

58% accept rate
"console" is some ruby console? Usually, "console" is used to mean a terminal with some shell like bash/ksh/tcsh/zsh. – ndim Oct 21 '09 at 22:33
1  
could you comment on why there is a ruby tag?? – DigitalRoss Oct 21 '09 at 22:34
Because it is in a ruby console (irb) – robertokl Oct 21 '09 at 23:17
feedback

1 Answer

I think @host might be getting interpolated.

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.