Tagged Questions
1
vote
1answer
162 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 ...