echo ""
echo "This script installs all the proper files into the right dirs"
echo "for Stu's CDXL GUI (libraries, command, etc)."
echo ""
ask "Continue? "

if warn
 if exists libs:rexxreqtools.library
  version libs:rexxreqtools.library
  version rexxreqtools.library
  ask "Type N if they are both the same or the higher number is bigger, otherwise type Y"
   if warn
    copy rexxreqtools.library libs:
   endif
  else
   copy rexxreqtools.library libs:
  endif
 copy cdgsxl.new c:
echo "Complete"
else
echo "Okay, bye bye..."
endif
  
