blob: c8a0ee3f45005b27f2a1c4254272ceab64823722 [file] [log] [blame]
rsc7c709432005-03-18 19:30:22 +00001#!/usr/local/plan9/bin/rc
2
3if(! ~ $#* 2){
rscbaf78252005-03-20 23:39:48 +00004 echo 'usage: netfileput system path' >[1=2]
rsc7c709432005-03-18 19:30:22 +00005 exit usage
6}
7
8f=putfile
rsc7c709432005-03-18 19:30:22 +00009
rscb8c9f312005-03-21 07:37:34 +000010. netfilelib.rc $1
rsc7c709432005-03-18 19:30:22 +000011
12fn putfile{
13 cat >$t
rsc65fb6fb2005-03-24 05:17:01 +000014 echo put $t $2 | runsftp -e $1
rsc7c709432005-03-18 19:30:22 +000015}
16fn putfile9p{
17 if(! 9p write $1/$2)
18 exit 1
19}
20
21$f $1 $2
22exit 0
rscb8c9f312005-03-21 07:37:34 +000023