mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-24 16:04:40 +08:00
10 lines
182 B
Bash
10 lines
182 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if test "x$srcdir" = "x" ; then srcdir=`dirname $0`; fi; export srcdir
|
||
|
|
||
|
rm -f log.log
|
||
|
sh -x ${srcdir}/test_parse.sh >& ./parse.log >& log.log
|
||
|
cat log.log /dev/tty
|
||
|
|
||
|
exit 0
|