echo ""
echo ""
echo ""
echo ""
echo ""
echo ""
echo ""
echo ""
echo ""
echo ""
echo ""
echo ""
echo ""
echo ""
echo ""
echo ""
echo ""
echo ""
echo "The initial part of this script executes an AREXX macro that"
echo "will prompt you for filenames of the original citation file"
echo "and a destination file for the PACKED citations.  The citations"
echo "are sorted, you are prompted for a filename for the unpacked"
echo "citations and a Citation_Base standard file is created."
rx ram:pack.surname.rexx
echo ""
echo ""
echo "Please input the names of the packed, unsorted input file and"
echo "the sorted file (to be created).  You should simply type each"
echo "filename and hit RETURN as directed by the prompts.  Be sure to"
echo "include the complete path names!  For example, an unsorted"
echo "filename (including the path) might be:  DF2:RAW.txt" 
echo "and the sorted path/filename might be:   RAM:SORT.txt"
echo ""
echo "Input (unsorted) file:"
echo ""
echo ""
read <NEWCON:0/170/640/30/ASHell unsorted
echo ""
echo "Output (sorted) file:"
echo ""
echo ""
read <NEWCON:0/170/640/30/ASHell sorted
echo ""
sort $unsorted $sorted
echo "Sorting complete!"
echo ""
echo "Please input the name of the packed, sorted input file and"
echo "the name for the unpacked file (to be created)."
rx ram:unpack.surname.rexx
echo ""
echo "Rexx script finished!"
wait 4
