8 lines
115 B
Plaintext
8 lines
115 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# run process through valgrind instead
|
||
|
|
||
|
DIRNAME=$(dirname $0)
|
||
|
set -x
|
||
|
valgrind ${DIRNAME}/qdoc.orig $@
|