23 lines
253 B
Bash
Executable file
23 lines
253 B
Bash
Executable file
#!/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
|
|
|