5 lines
131 B
Bash
Executable file
5 lines
131 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cd bin
|
|
valgrind --leak-check=full --track-origins=yes ./game 2>&1 | tee valgrind.txt
|
|
echo "log saved to valgrind.txt"
|