#!/bin/sh
# simple question script.

echo
echo "-----------------------------------------------"
echo "stripping your darkbot deletes the relocation"
echo "information and symbol table used by debuggers,"
echo "This decreases the size of your darkbot bin."
echo
ls -l ./darkbot
echo
echo -n "Would you like to strip your darkbot? [Y/n] "
read CHOICE
echo
case $CHOICE in
	n)
		echo
		echo "Skipping strip..."
		echo
		;;
	N)
		echo
		echo "Skipping strip..."
		echo
		;;
	*)
		strip ./darkbot
		ls -l ./darkbot
		echo
		echo "strip Completed."
		echo
		;;
esac
