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

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

f=putfile

. netfilelib.rc $1

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

$f $1 $2
exit 0