View Single Post
Posts: 80 | Thanked: 40 times | Joined on Feb 2010 @ UK
#8
I wrote a little shell script some time ago using sshfs that prompted for remote host and user name/password and mounted to a pre-defined mount point. I had uploaded it to a couple of forums at the time but it was so long ago they seem to be gone! I might have a copy at work...

It really was basic though, just asked for input of the above variables and then did something like
Code:
sshfs <user>@host:/home/<user> /home/<user_on_local_host>/remote-home
.