#!/bin/bash
read -p "Press Enter to install Bible Analyzer modules"

echo "Extracting the files..."
sudo unzip -qLL -d /tmp/modules "BA-*.zip"

echo "Copying the files..."
sudo cp -r /tmp/modules /usr/share/bibleanalyzer

echo "Cleaning up..."
sudo rm -rf /tmp/modules

read -p "Files copied. Press Enter to close terminal"
