#!/bin/sh
#
#  Date: Thu May  9 13:52:18 CDT 2019
#  Name: interact
#
read -p "Prompt: " resp x
echo -n $resp | od -cb
echo
echo .$x | od -cb
echo
if [[ $resp == 'y' ]]
then
  echo "I got it"
fi
