⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test2.sh

📁 harvest是一个下载html网页得机器人
💻 SH
字号:
#!/bin/sh# $Id: test2.sh,v 1.7 2003/05/24 22:34:48 adam Exp $LOG=test2.logrm -f $LOGecho "init..." >>$LOGrm -f records/esdd000[12].grs # these should not be here, will be created later../../index/zebraidx -l $LOG -c zebra2.cfg init || exit 1echo "update 1..." >>$LOG../../index/zebraidx -l $LOG -c zebra2.cfg update records || exit 1echo "update 2..." >>$LOG../../index/zebraidx -l $LOG -c zebra2.cfg update records || exit 1echo "killing old server (if any)..." >>$LOGtest -f zebrasrv.pid && kill -9 `cat zebrasrv.pid`echo "starting server..." >>$LOG../../index/zebrasrv -S -c zebra2.cfg -l $LOG tcp:@:9901 &sleep 1test -f zebrasrv.pid || exit 1echo "search 1..." >>$LOG../api/testclient localhost:9901 "@attr 1=4 utah" > log || exit 1grep "^Result count: 9$" log >/dev/null || exit 1echo "update 3..." >>$LOG../../index/zebraidx -l $LOG -c zebra2.cfg update records || exit 1echo "search 2..." >>$LOG../api/testclient localhost:9901 "@attr 1=4 utah" > log || exit 1grep "^Result count: 9$" log >/dev/null || exit 1echo "making test records..." >>$LOGcp records/esdd0006.grs records/esdd0001.grsecho "indexing them..." >>$LOG../../index/zebraidx -l $LOG -c zebra2.cfg update records || exit 1echo "search 3..." >>$LOG../api/testclient localhost:9901 "@attr 1=4 utah" > log || exit 1grep "^Result count: 10$" log >/dev/null || exit 1touch records/esdd0001.grsecho "indexing again..." >>$LOG../../index/zebraidx -l $LOG -c zebra2.cfg update records || exit 1echo "search 4..." >>$LOG../api/testclient localhost:9901 "@attr 1=4 utah" > log || exit 1grep "^Result count: 10$" log >/dev/null || exit 1echo "making another test record..." >>$LOGmv records/esdd0001.grs records/esdd0002.grsecho "indexing it too..." >>$LOG../../index/zebraidx -l $LOG -c zebra2.cfg update records || exit 1echo "search 5..." >>$LOG../api/testclient localhost:9901 "@attr 1=4 utah" > log || exit 1grep "^Result count: 10$" log >/dev/null || exit 1sleep 1echo "modifying a test record..." >>$LOGsed 's/UTAH/XYZ/g' <records/esdd0002.grs >records/esdd0002x.grsmv records/esdd0002x.grs records/esdd0002.grsecho "indexing it..." >>$LOG../../index/zebraidx -l $LOG -c zebra2.cfg update records || exit 1sleep 1echo "search 6..." >>$LOG../api/testclient localhost:9901 "@attr 1=4 utah" > log || exit 1grep "^Result count: 9$" log >/dev/null || exit 1echo "search 7..." >>$LOG../api/testclient localhost:9901 "@attr 1=4 xyz" > log || exit 1grep "^Result count: 1$" log >/dev/null || exit 1echo "stopping server..." >>$LOGtest -f zebrasrv.pid || exit 1kill `cat zebrasrv.pid` || exit 1rm -f logrm -f records/esdd000[12].grs rm -f zebrasrv.pid

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -