#!/bin/bash
before=$(free)
sync && echo 3 > /proc/sys/vm/drop_caches
after=$(free)
zenity --info --text="Before VLFreeMem \n $before \n \n After VLFreeMem \n $after"
