Pause Ü
   ßßßßßß

 Suspends processing of a batch program and displays a message prompting
 the user to press any key to continue.

 Syntax: PAUSE

 FreeDOS displays the following message in response to the Pause command:

      Press any key to continue . . .

 Example:
   @ECHO OFF
   :begin
   copy a:*.*
   echo Please put a new disk into drive A:
   pause
   goto begin

 See Also:
   Echo
   Goto