while true ; do
init='cat: ewow2.log: No such file or directory'
ewow=`cat ewow2.log`
if [ "$ewow" == "$init" ]
then
echo nothing
else
echo writting
rm ewow2.log
fi
done
