#!/bin/bash
  
  clear
  
  echo -e
  echo -en "\E[32;1m Clearing tool... \E[32;0m"
  echo -e
  echo -e
  tput sgr0
  
  sudo rm -rfv PROJECT/*
  sudo rm -rfv STOCK/*
  
  echo
  echo -e -n "\033[1m Finished \033[0m"
  tput sgr0
  echo
  echo "Press Enter to continue"
  read enterKey

