#!/bin/bash
cd ~garufi/public_html
rm presenti.txt 
if [ $? -ne 0 ]; then
	echo "rm failed"
	exit;
fi

rm assenti.txt
rm comments.txt
rm ../log.txt
touch assenti.txt
touch presenti.txt
touch comments.txt
touch ../log.txt
chmod ugo+w ../log.txt
chmod ugo+w presenti.txt assenti.txt comments.txt
