aboutsummaryrefslogtreecommitdiff
path: root/bin/netfileput
blob: 9a5a396d99382b0c7537e0be3282850e19827ac1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/local/plan9/bin/rc

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

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

cat >$t
if(! echo put $t $2 | sftp -b - $1 >/dev/null)
	exit 1
exit 0