wok-6.x view sshfs-fuse/stuff/rsshfs @ rev 16759

sshfs-fuse/rsshfs: lazy umount support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 16 23:51:49 2014 +0200 (2014-06-16)
parents c176489f467b
children fc1b98958191
line source
1 #!/bin/sh
2 # from https://github.com/rom1v/rsshfs
4 rhost="${2%%:*}"
5 rpath="${2#*:}"
6 lpath="$1"
7 shift 2
9 case "$lpath" in
10 -u) ssh "$rhost" fusermount -u $@ "$rpath"
11 ;;
13 ''|-*) cat <<EOT
14 usage:
15 $0 localpath remotehost:remotepath [-o ro -o allow_other]
16 $0 -u remotehost:remotepath [-z]
17 EOT
18 ;;
20 *) fifo=/tmp/rsshfs-$$
21 mkfifo $fifo
22 sftp-server < $fifo | \
23 ssh "$rhost" sshfs -o slave ":$lpath" "$rpath" "$@" > $fifo
24 rm -f $fifo
25 esac