#!/bin/bash

############################################################################
#
# Copyright (c) 2016
#
############################################################################
MENU=tools/scripts/menu_dat

  echo -en "\E[32;1m"
  echo -e "============================================================"
  echo -e " Entpack menu"
  echo -e "============================================================"
  echo -e 
  echo -e "  1 - Enpqack NEW.DAT"
  echo -e "  2 - Mount ext4img"
  echo -e "  3 - RETURN MAIN MENU"

  tput sgr0
  echo -e -n "\033[1m Enter option: \033[0m"
  read opt
  case $opt in

      1) clear; tools/scripts/com_entpack_dat; clear; $MENU;;
      2) clear; tools/scripts/com_mount_raw; clear; $MENU;;
      3) clear; ./main_menu;;

  esac
