shithub: x

ref: 79c6404377c27bdd84d5743020cdf17d9696e1d0
dir: /mnt/

View raw version
#!/bin/rc

rfork e

fn usage {
	echo usage: x/mnt [[user@]host ...] >[1=2]
	exit usage
}

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 -M -r / -s $userhost $userhost
	}
}

hosts=$*
if(~ $#hosts 0)
	hosts=`{x/path -l}
if(~ $#hosts 0)
	usage
for(h in $hosts)
	mnt $h