How to remote mount with password using SSHFS and stdin; Ubuntu sshfs remote mounting; MOSSO

Reply to comment

"Timeout waiting for prompt" happens due to host identity verification while connecting for the very first time. Simply add -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null. The first option allows you to connect to unknown hosts without prompt, the second option prevents the host key from getting stored in the first place, so you won't run into problems if it changes. This is not very secure, but neither is piping the clear-text password...