home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / rxmulch2.zip / dec_char.ctl < prev    next >
Text File  |  1994-01-07  |  1KB  |  61 lines

  1. ;   This is a comment (line begins with a semi-colon ";").
  2. ;
  3. ;   Control-file for changing lower characters (x00-x1F) with the appropriate
  4. ;   decimal-codes, except for CR-LF, so one can use an editor to look at the 
  5. ;   contents
  6. ;
  7. ;   to apply to 'infile' use:
  8. ;
  9. ;      rxMulch infile dec_char.ctl
  10. ;
  11. ;   to revert changes to 'infile' use:
  12. ;
  13. ;      rxMulch infile -dec_char.ctl
  14. ;
  15. ;  1993-11-04, Rony G. Flatscher, Wirtschaftsuniversitaet Wien
  16. ;
  17. ;  empty lines are ignored
  18.  
  19. ; search-string/replace-string
  20. ; delimiter is "/", as this is the character in column 1
  21.  
  22. /@x00/<@@d000>/
  23. /@x01/<@@d001>/
  24. /@x02/<@@d002>/
  25. /@x03/<@@d003>/
  26. /@x04/<@@d004>/
  27. /@x05/<@@d005>/
  28. /@x06/<@@d006>/
  29. /@x07/<@@d007>/
  30. /@x08/<@@d008>/
  31. /@x09/<@@d009>/
  32. ; conserve line-feed
  33. ;/@x0A/<@@d010>/
  34. /@x0B/<@@d011>/
  35. /@x0C/<@@d012>/
  36. ; conserve carriage-return
  37. ;/@x0D/<@@d013>/
  38. /@x0E/<@@d014>/
  39. /@x0F/<@@d015>/
  40.  
  41. ; delimiter is "=", as this is the character in column 1
  42.  
  43. =@x10=<@@d016>=
  44. =@x11=<@@d017>=
  45. =@x12=<@@d018>=
  46. =@x13=<@@d019>=
  47. =@x14=<@@d020>=
  48. =@x15=<@@d021>=
  49. =@x16=<@@d022>=
  50. =@x17=<@@d023>=
  51. =@x18=<@@d024>=
  52. =@x19=<@@d025>=
  53. =@x1A=<@@d026>=
  54. =@x1B=<@@d027>=
  55. =@x1C=<@@d028>=
  56. =@x1D=<@@d029>=
  57. =@x1E=<@@d030>=
  58. =@x1F=<@@d031>=
  59.  
  60.  
  61.