home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 3 Comm / 03-Comm.zip / scrmod.zip / CHDIR.SCR < prev    next >
Text File  |  1992-02-05  |  497b  |  20 lines

  1. > ; Script test CD command
  2. >timeout = 0
  3. >windowpos (1,1)
  4. >windowprms(on,0,1)
  5. >windowsize(10,50)
  6. >windowtitle('CHDIR Command Test')
  7. >windowshow()
  8. >message ('A test of the change directory commands')
  9. >message('Changing directories now with CD ...')
  10. > cd ('c:\windows')
  11. > wait()
  12. > mkdir ('c:\newdir')
  13. > message ('Creating a new directory on drive C:\newdir')
  14. > chdir ('c:\newdir')
  15. > wait()
  16. > message('Changing to previous  with CHDIR')
  17. > chdir ('c:\softerm\os2\scripts')
  18. > wait()
  19.  
  20.