#!/bin/bash

while [ 1 ]; do
	sleep 600

	sync && echo 3 > /proc/sys/vm/drop_caches
	echo "bufClean!!!"
	
done
