#!/bin/bash

if [ "$EUID" -ne 0 ]
  then echo "Please run as root"
  exit
fi

rm  -rf /home/projects/$1


echo "--OK--"
