mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
545 B
29 lines
545 B
#!/bin/bash
|
|
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
|
|
|
|
curPath=`pwd`
|
|
rootPath=$(dirname "$curPath")
|
|
rootPath=$(dirname "$rootPath")
|
|
rootPath=$(dirname "$rootPath")
|
|
rootPath=$(dirname "$rootPath")
|
|
rootPath=$(dirname "$rootPath")
|
|
|
|
# echo $rootPath
|
|
|
|
resty=$rootPath/openresty/bin/resty
|
|
|
|
RUN_CMD=$resty
|
|
if [ ! -f $resty ];then
|
|
RUN_CMD=/www/server/openresty/bin/resty
|
|
fi
|
|
|
|
|
|
# test
|
|
# $RUN_CMD simple.lua
|
|
|
|
# $RUN_CMD test_today.lua
|
|
# $RUN_CMD test_time.lua
|
|
|
|
# $RUN_CMD test_ngx_find.lua
|
|
|
|
$RUN_CMD test_match_spider.lua |