mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-09-28 19:05:55 +08:00
23 lines
438 B
Bash
Executable File
23 lines
438 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. ../.function
|
|
|
|
rm -f web_doc_parse.log \
|
|
out/userver_tcp.out err/userver_tcp.err \
|
|
trace.*userver_tcp*.[0-9]* object.*userver_tcp*.[0-9]*
|
|
|
|
UTRACE="0 10M 0"
|
|
UOBJDUMP="0 100k 10"
|
|
#USIMERR="error.sim"
|
|
export UTRACE UOBJDUMP USIMERR
|
|
|
|
DIR_CMD="../../examples/userver"
|
|
|
|
#STRACE=$TRUSS
|
|
start_prg_background userver_tcp -c web_doc_parse.cfg
|
|
|
|
#$SLEEP
|
|
#kill_prg userver_tcp TERM
|
|
|
|
mv err/userver_tcp.err err/web_doc_parse.err
|