home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 96 / af096sub.adf / reset.LZX / mereset / MEReset.rexx < prev    next >
OS/2 REXX Batch file  |  1996-08-27  |  524b  |  32 lines

  1. /*
  2.  
  3.     Hier noch ein kleines Test-Script für MEReset
  4.  
  5.     Autor : Malte Eller
  6.  
  7.     VER$: MEReset_TestArexx 2.0 (30.04.1996)
  8.  
  9. */
  10.  
  11. ADDRESS MERESET.REXX
  12.  
  13. SAY "Folgende Befehle kennt MEReset:"
  14. SAY " - Ende      : Beendet das Programm"
  15. SAY " - Reset x,y : Was wohl?!"
  16. SAY "   x - 0 normal, 1 ohne Sicherheit"
  17. SAY "   y - 0 normal, 1 ohne Zeit"
  18. SAY " - Abbruch : Bricht den Reset ab (nur bei Reset)"
  19.  
  20. SAY "Wähle ein Befehl aus:"
  21.  
  22. DO FOREVER
  23.  Options PROMPT "Meine Wahl: "
  24.  PULL Befehl
  25.  IF Befehl="" THEN
  26.   BREAK
  27.  Else
  28.   Befehl
  29.  END
  30. ENDE
  31.  
  32.