4 lines
118 B
Bash
Executable file
4 lines
118 B
Bash
Executable file
#!/bin/sh
|
|
mkdir -p "$HOME/nfs"
|
|
exec sshfs -o auto_unmount -o uid=`id -u` -o gid=`id -g` -f kentoj.de:nfs "$HOME/nfs"
|
|
|