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

  1. ;   This is a comment (line begins with a semi-colon ";").
  2. ;
  3. ;   Control-file for changing lower characters (x00-x1F) with the abbreviations
  4. ;   known as "^" plus key-char, except for CR-LF, so one can use an editor to 
  5. ;   look at the contents
  6. ;
  7. ;   to apply to 'infile' use:
  8. ;
  9. ;      rxMulch infile ctl_char.ctl
  10. ;
  11. ;   to revert changes to 'infile' use:
  12. ;
  13. ;      rxMulch infile -ctl_char.ctl
  14. ;
  15. ;  1994-01-07, Rony G. Flatscher, Wirtschaftsuniversitaet Wien
  16. ;
  17.  
  18. ; search-string/replace-string
  19. ; delimiter is "/", as this is the character in column 1
  20.  
  21. /@x00/<@@^@@>/
  22. /@x01/<@@^A>/
  23. /@x02/<@@^B>/
  24. /@x03/<@@^C>/
  25. /@x04/<@@^D>/
  26. /@x05/<@@^E>/
  27. /@x06/<@@^F>/
  28. /@x07/<@@^G>/
  29. /@x08/<@@^H>/
  30. /@x09/<@@^I>/
  31. ; conserve line-feed
  32. ;/@x0A/<@@^J>/
  33. /@x0B/<@@^K>/
  34. /@x0C/<@@^L>/
  35. ; conserve carriage-return
  36. ;/@x0D/<@@^M>/
  37. /@x0E/<@@^N>/
  38. /@x0F/<@@^O>/
  39.  
  40. ; delimiter is "=", as this is the character in column 1
  41.  
  42. =@x10=<@@^P>=    
  43. =@x11=<@@^Q>=    
  44. =@x12=<@@^R>=    
  45. =@x13=<@@^S>=    
  46. =@x14=<@@^T>=    
  47. =@x15=<@@^U>=    
  48. =@x16=<@@^V>=    
  49. =@x17=<@@^W>=    
  50. =@x18=<@@^X>=    
  51. =@x19=<@@^Y>=    
  52. =@x1A=<@@^Z>=    
  53. =@x1B=<@@^[>=    
  54. =@x1C=<@@^\>=    
  55. =@x1D=<@@^]>=    
  56. =@x1E=<@@^^>=    
  57. =@x1F=<@@^_>=    
  58.  
  59.  
  60.