wok view sshfs-fuse/stuff/rsshfs @ rev 19934

fix symlinks (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 28 10:36:22 2017 +0200 (2017-04-28)
parents fc1b98958191
children
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 ro=""
22 mkfifo $fifo
23 case " $@ " in
24 *\ -o\ ro\ *) ro="-R"
25 esac
26 /usr/sbin/sftp-server $ro <$fifo | \
27 ssh "$rhost" sshfs -o slave ":$lpath" "$rpath" "$@" >$fifo
28 rm -f $fifo
29 esac