aboutsummaryrefslogtreecommitdiff
path: root/bin/netfileput
blob: baa3eb127bd90d006d9a0c3ceee54a45fb156569 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/local/plan9/bin/rc

if(! ~ $#* 2){
	echo 'usage: netput system path' >[1=2]
	exit usage
}

f=putfile
ns=`{namespace}
if(u test -S $ns/$1)
	f=$f^9p

t=/tmp/netget.$pid.$USER
fn sigexit { rm -f $t }

fn putfile{
	cat >$t
	if(! echo put $t $2 | sftp -b - $1 >/dev/null)
		exit 1
}
fn putfile9p{
	if(! 9p write $1/$2)
		exit 1
}

$f $1 $2
exit 0