home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: WPS_PM / WPS_PM.zip / xfld085s.zip / 001 / ren083.cmd next >
OS/2 REXX Batch file  |  1998-12-14  |  4KB  |  100 lines

  1. @echo off
  2.  
  3. REM This will rename lots of HTML source files for the
  4. REM XFolder Online Reference and update the links in the
  5. REM HTML sources also.
  6. REM For this to work, /helpers/strrpl.exe must be on your PATH.
  7.  
  8. REM change the following command to the directory where this
  9. REM script should change to (containing all the INF HTML sources)
  10. SET SUBDIR=inf.001
  11.  
  12. echo Warning: This script will rename a lot of files in the %SUBDIR% directory.
  13. echo Please read the comments in this script to find out more.
  14. echo Press Ctrl+C to abort now or any other key to continue.
  15. PAUSE > NUL
  16.  
  17. CD %SUBDIR%
  18.  
  19. REM This command is for deleting all .LONGNAME EAs. If you
  20. REM don't have my CommandPak utilities, you can delete this
  21. REM line. But make sure the .LONGNAMEs are delete in some
  22. REM other way, or the WPS might still display the old filenames.
  23. call xren.cmd -dL *
  24.  
  25. del 065configure.html
  26.  
  27. ren config_2menu.html menu_3config.html
  28. ren config_2wpprogram.html menu_4wpprogram.html
  29. ren config_3order.html menu_5order.html
  30. ren config_61statusbars.html fldr_32statusbars.html
  31. ren config_6settings.html sys_2global.html
  32. ren config_7settings.html fldr_7settings.html
  33. ren config_8sounds.html 064intro_sounds.html
  34.  
  35. ren intro_10menu.html menu_1default.html
  36. ren intro_21template.html menu_2template.html
  37. ren intro_22favorite.html menu_6favorite.html
  38. ren intro_23sort.html fldr_38sort.html
  39. ren intro_24selectsome.html menu_7selectsome.html
  40. ren intro_25snaptogrid.html menu_8snaptogrid.html
  41. ren intro_26copyfilename.html menu_91copyfilename.html
  42. ren intro_3icon.html fldr_1icon.html
  43. ren intro_4fullpath.html fldr_2fullpath.html
  44. ren intro_4statusbars.html fldr_31statusbars.html
  45. ren intro_4treeviews.html fldr_4treeviews.html
  46. ren intro_4xelerators.html fldr_5xelerators.html
  47. ren intro_5quickopen.html fldr_5quickopen.html
  48.  
  49. ren intro_6restartwps.html xsd_1restartwps.html
  50. ren intro_6xshutdown.html xsd_2xshutdown.html
  51. ren intro_7folders.html xsd_3folders.html
  52. ren intro_8cmdline.html xsd_4cmdline.html
  53.  
  54. ren intro_900system.html sys_1intro.html
  55. ren intro_911wpsclasses.html sys_4wpsclasses.html
  56. ren intro_921kernel1.html sys_5scheduler.html
  57. ren intro_922kernel2.html sys_6memory.html
  58. ren intro_923kernel3.html sys_7filesys.html
  59.  
  60. strrpl *.html config_2menu.html menu_3config.html
  61. strrpl *.html config_2wpprogram.html menu_4wpprogram.html
  62. strrpl *.html config_3order.html menu_5order.html
  63. strrpl *.html config_61statusbars.html fldr_32statusbars.html
  64. strrpl *.html config_6settings.html sys_2global.html
  65. strrpl *.html config_7settings.html fldr_7settings.html
  66. strrpl *.html config_8sounds.html 064intro_sounds.html
  67.  
  68. strrpl *.html intro_10menu.html menu_1default.html
  69. strrpl *.html intro_21template.html menu_2template.html
  70. strrpl *.html intro_22favorite.html menu_6favorite.html
  71. strrpl *.html intro_23sort.html fldr_38sort.html
  72. strrpl *.html intro_24selectsome.html menu_7selectsome.html
  73. strrpl *.html intro_25snaptogrid.html menu_8snaptogrid.html
  74. strrpl *.html intro_26copyfilename.html menu_91copyfilename.html
  75. strrpl *.html intro_3icon.html fldr_1icon.html
  76. strrpl *.html intro_4fullpath.html fldr_2fullpath.html
  77. strrpl *.html intro_4statusbars.html fldr_31statusbars.html
  78. strrpl *.html intro_4treeviews.html fldr_4treeviews.html
  79. strrpl *.html intro_4xelerators.html fldr_5xelerators.html
  80. strrpl *.html intro_5quickopen.html fldr_5quickopen.html
  81.  
  82. strrpl *.html intro_6restartwps.html xsd_1restartwps.html
  83. strrpl *.html intro_6xshutdown.html xsd_2xshutdown.html
  84. strrpl *.html intro_7folders.html xsd_3folders.html
  85. strrpl *.html intro_8cmdline.html xsd_4cmdline.html
  86.  
  87. strrpl *.html intro_900system.html sys_1intro.html
  88. strrpl *.html intro_911wpsclasses.html sys_4wpsclasses.html
  89. strrpl *.html intro_921kernel1.html sys_5scheduler.html
  90. strrpl *.html intro_922kernel2.html sys_6memory.html
  91. strrpl *.html intro_923kernel3.html sys_7filesys.html
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.