#!/bin/bash
echo Please paste the required paragraph in the console.
echo NOTE: This would however be pasted into a local file and processed further.
echo 
read input_text
echo
echo You entered :
echo $input_text
echo $input_text>text
echo Text File Created
echo
java -jar SoftwareVersionExtractor.jar
echo
java -jar ActionImpactExtractor.jar
echo
rm -f text
echo Text file deleted
read -p "Press [Enter] key to continue....."
exit

