1#!/bin/sh
2
3valgrind --leak-check=full --show-leak-kinds=definite --log-file=memcheck.txt ./freeblocks
4vim memcheck.txt
5rm memcheck.txt
6
7