#!/bin/sh
echo "STATUS: getting the memory tracker logs ..."
for i in $(ls -1 -t /cfg/mem*.out | tac)
do
    cat $i 
done
echo "done getting the memory tracker logs"

exit 0
