mirror of
https://github.com/samba-team/samba.git
synced 2025-01-15 23:24:37 +03:00
3dddbb5e26
(This used to be commit f56912e3b545325e941ee898337c5483ec435e39)
10 lines
109 B
Bash
Executable File
10 lines
109 B
Bash
Executable File
#!/bin/sh
|
|
|
|
ENV="$1"
|
|
|
|
shift 1
|
|
|
|
CMD="$ENV valgrind -q --db-attach=yes --num-callers=30 $@"
|
|
echo $CMD
|
|
eval $CMD
|