plan9port/src/cmd/netfiles/netfileget

46 lines
692 B
Text
Raw Normal View History

2005-03-18 19:30:22 +00:00
#!/usr/local/plan9/bin/rc
f=getfile
if(~ $1 -d){
f=getdir
shift
}
if(! ~ $#* 2){
2005-03-20 23:39:48 +00:00
echo 'usage: netfileget [-d] system path' >[1=2]
2005-03-18 19:30:22 +00:00
exit usage
}
2005-03-21 07:37:34 +00:00
. netfilelib.rc $1
2005-03-18 19:30:22 +00:00
fn getfile {
rm -f $t
2005-03-21 07:37:34 +00:00
if(! 9 echo -get $2 $t | mysftp $1 >$t.e >[2=1])
exit 1
egrep -v '^Fetching' $t.e >$t.e2
if(test -s $t.e2){
cat $t.e >[1=2]
2005-03-18 19:30:22 +00:00
exit 1
2005-03-21 07:37:34 +00:00
}
2005-03-18 19:30:22 +00:00
cat $t
}
fn getfile9p {
if(! 9p read $1/$2)
exit 1
}
fn getdir {
2005-03-21 07:37:34 +00:00
if(! {echo cd $2; echo ls -l} | mysftp $1 | sed '1,2d; s/sftp> //g; /^$/d' >$t)
2005-03-18 19:30:22 +00:00
exit 1
cat $t | awk '$NF == "." || $NF == ".." { next } {s = $NF; if($0 ~ /^d/) s = s "/"; print s}'
}
fn getdir9p {
9p ls -l $1/$2 | awk '{s=$NF; if($0 ~ /^d/) s=s"/"; print s}'
}
$f $1 $2
exit 0