11 lines
156 B
Bash
11 lines
156 B
Bash
|
#!/bin/sh -e
|
||
|
# Test '-- MARK --' in log, depends on fwd.sh
|
||
|
|
||
|
if [ x"${srcdir}" = x ]; then
|
||
|
srcdir=.
|
||
|
fi
|
||
|
. ${srcdir}/test.rc
|
||
|
|
||
|
sleep 60
|
||
|
grep "MARK" ${LOG2}
|