#!/bin/csh
while (1)
echo `date` > test_file
cat test_file
rm test_file
sleep 1
end
