#!/bin/bash
  
  clear
  
  echo -en "\E[32;1m"
  echo -e "Unmount RAW img..."
  echo -e
  tput sgr0
  
  sudo umount PROJECT/*.mnt
  
  rm -rfv PROJECT/*.mnt
  
  rm -fv PROJECT/*.raw
  
  echo
  echo -en "\033[1m Finished \033[0m"
  echo -e
  tput sgr0
  echo
  echo "Press Enter to continue"
  read enterKey
