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

📄 timing2.sh

📁 harvest是一个下载html网页得机器人
💻 SH
字号:
#!/bin/sh# $Id: timing2.sh,v 1.7 2003/05/24 22:34:48 adam Exp $ # Demonstrated that updates depend on file timestampsLOG=timing2.logrm -f $LOGecho "  init..." >>$LOGrm -f log timeref[12]rm -f records/esdd000[12].grs # these should not be here, will be created later../../index/zebraidx -c zebra2.cfg -l $LOG init || exit 1touch timeref1  # make an early timestampecho "  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 1touch timeref2  # make a later timestampecho "  update 1..." >>$LOG../../index/zebraidx -l $LOG -c zebra2.cfg update records || exit 1echo "  search 1..." >>$LOG../api/testclient localhost:9901 "@attr 1=4 utah" > log || exit 1grep "^Result count: 9$" log >/dev/null || exit 1echo "making a test record..." >>$LOGcp records/esdd0006.grs records/esdd0002.grstouch -r timeref1 records/esdd0002.grsecho "  indexing it..." >>$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: 10$" log >/dev/null || exit 1echo "  modifying a test record (xyz)..." >>$LOGsed 's/UTAH/XYZ/g' <records/esdd0002.grs >records/esdd0002x.grsmv records/esdd0002x.grs records/esdd0002.grstouch -r timeref1 records/esdd0002.grs # reset timestamp to 'early'echo "    not indexing it..." >>$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 1echo "    checking..." >>$LOGgrep "^Result count: 10$" log >/dev/null || exit 1echo "  touching its timestamp..." >>$LOGtouch -r timeref2 records/esdd0002.grs # set timestamp to 'late'echo "    indexing it..." >>$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 1echo "    checking..." >>$LOGgrep "^Result count: 9$" log >/dev/null || exit 1echo "stopping server..." >>$LOGtest -f zebrasrv.pid || exit 1kill `cat zebrasrv.pid` || exit 1rm -f log timeref[12]rm -f records/esdd000[12].grs rm -f zebrasrv.pid

⌨️ 快捷键说明

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