1
0
Files
settings/Batch/memleak-logger.sh
Stian Lund db136b4ee2 added files
2023-12-12 18:23:56 +01:00

11 lines
162 B
Bash
Executable File

#!/bin/bash
Progname="6320"
while true
do
timestamp=$(date +%T)
mem=$(pslist -m -nobanner $Progname | grep $Progname)
echo $timestamp,$mem
sleep 10
done