ref: 989dbedde74719cbb6c2d85316325b7db7621118
dir: /mnt/
#!/bin/rc
rfork e
. /sys/lib/x/lib.rc
usage = '
x/mnt [[user@]host ...]
'
fn mnt {
user=(root $user)
host=$1
if(~ $host *@*){
x=`'@'{echo -n $host}
user=$x(1)
host=$x(2)
}
for(u in $user){
userhost=$u@$host
mount -c /srv/$userhost /x/$userhost >[2]/dev/null \
|| sshfs -s $userhost -m /x/$userhost -r / $userhost
}
}
hosts=$*
if(~ $#hosts 0)
hosts=`{x/path -l}
if(~ $#hosts 0)
usage
for(h in $hosts)
mnt `{x/path -l $h}