mktar: Use `wc` instead of `du` in summary message
[sunny256-utils.git] / vgr
blob13a426cf6543e7d2b129de962aa108d23c67d4eb
1 #!/bin/sh
3 #==============================================================================
4 # vgr
5 # File ID: 43978e30-3a7f-11e7-b7ff-f74d993421b0
7 # Run a command through Valgrind.
9 # Author: Øyvind A. Holm <sunny@sunbase.org>
10 # License: GNU General Public License version 2 or later.
11 #==============================================================================
13 progname=vgr
14 VERSION=0.1.0
16 valgrind -q --leak-check=full --show-leak-kinds=all -- "$@"
18 # vim: set ts=8 sw=8 sts=8 noet fo+=w tw=79 fenc=UTF-8 :