I have trouble to pass a password automatically in my script. This is how it looks like when I do it manually:
sshfs -o nonempty [email protected]:/ /home/administrator/data
I am now forced to enter the password for sshfs
:
password
I try to automate that in a script and pass the password like this to standard input:
#!/bin/bash
echo "password" | sudo -S sshfs -o nonempty [email protected]:/ /home/administrator/data
When I run the script, I am still forced to enter the password. What am I doing wrong?
Looking at the sshfs wiki it seems this is used to mount a remote file system.
This looks like more of a SSH issue really, if your ssh config is configured to use a password only then you'll get prompted. Its better (and more secure) to use a SSH key without a passphrase imo.
As per the wiki: