home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / t / tran05.zip / TRANDOS.TXT < prev    next >
Text File  |  1993-01-20  |  2KB  |  70 lines

  1. Translate v.05, by Erick Hammersmark.
  2.  
  3. Translate is a command-line utility to translate between a string and the
  4. ascii codes that make up that string.  Translate is capable of going both
  5. ways (from characters to numbers or from numbers to characters), and can
  6. express values in either decimal or hex.  Translate is also capable of
  7. taking it's input from a text file.
  8.  
  9. Translate is used as follows:
  10.  
  11. C:\tran Hello There
  12.  
  13. This would produce the following output:
  14.  
  15. 72 101 108 108 111 32 84 104 101 114 101
  16.  
  17. Please note that, when given text on the command line tail, Translate cannot
  18. distinguish one whitespace character from another.  Thus, even if words are
  19. separated with tabs, Translate will return ascii code 32 (a space) between
  20. words.  To avoid this, Translate may take its input from a text file.
  21.  
  22. C:\tran -f myfile.txt
  23.  
  24. This would translate every line in myfile.txt.  Codes 13 and 10 (carriage
  25. return and line feed) will not appear at the end of every line.
  26.  
  27. To convert from ascii values to a string, use the "-r" option:
  28.  
  29. C:\tran -r 72 101 108 108 111 32 84 104 101 114 101
  30.  
  31. This would produce the following output:
  32.  
  33. Hello There
  34.  
  35. The two options may be combined (tran -rf somefile.txt).
  36.  
  37. The third option available is the ability to display values in hexadecimal
  38. notation.  When using this option ("-h") in combination with "-r", make
  39. sure you precede each number with a "$" (eg $6D or $5e).
  40.  
  41. Tran is ShareWare.  If you use it often, please register it by sending
  42. $10 to the address below.  Registration will entitle you to this and all
  43. future versions of both the Windows and DOS versions of Translate (mailed
  44. to you if you send me a disk and postage) and free technical support.
  45.  
  46. Erick Hammersmark
  47. 18540 1/2 Densmore Ave N
  48. Seattle, WA   98133
  49.  
  50. Although this is the initial release of Translate for DOS, it is numbered
  51. version .05 to correspond with the older Windows product sharing the same
  52. name (and, oddly enough, the same function!).
  53.  
  54. Version history:
  55.  
  56. .04 : initial release of DOS version.
  57.  
  58. .05 : maintenance release of Windows version.
  59.  
  60. Plans for the future:
  61.  
  62. Memory resident pop-up version.
  63.  
  64. If you have any problems, questions, complaints, praises, etc., please
  65. direct them to me, Erick Hammersmark.  I can be reached through US mail
  66. at the address above, or through Internet E-Mail at
  67. ehammers@u.washington.edu.  Feel free to drop me a line wether you are
  68. registered or not.
  69.  
  70.