mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
6bc9fb887f
metze
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
|