#!/bin/bash

while [ true ]; do
	echo `date` > $1/readwrite.txt
	cat $1/readwrite.txt
	echo --
	sleep 1
done	
