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?