#!/usr/bin/env bash # 该功能目前没用 ROOT=$(cd `dirname $0`/../../../; pwd) cd $ROOT source $ROOT/shell/tsdb/common.sh host=39.104.80.229 pointIndex=1 storagePath="root.test1.wf01.wt01"; echo "----test query point last data pointIndex:${pointIndex}" java -cp ./lib/iotdb.jar demo.query.last.QuerySinglePointLastData \ --host $host --storagePath ${storagePath} --pointNamePrefix pointName1_ --pointIndex ${pointIndex} \ --showQueryResult 3 2>&1 | tee -a ./log/iotdb/out.log