home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d8xx / d864 / change.lha / Change / English / change.doc < prev    next >
Text File  |  1993-04-21  |  2KB  |  126 lines

  1.  
  2.  
  3.                           Change V1.00
  4.  
  5.                   Copyright © 1993 Harald Pehl
  6.                        All rights reserved
  7.  
  8.                             FREEWARE
  9.  
  10.                        With Documentation
  11.  
  12.  
  13.  
  14.  
  15.  
  16. Preface 
  17. -------
  18.  
  19. This program is freeware, this means that you can copy it
  20. freely as long as you don't ask any more money for it than a
  21. nominal fee for copying.  If you want to distribute this program
  22. you should keep this document with it.  This program cannot be
  23. used for commercial purposes without written permission from the
  24. author.  
  25.  
  26. If you have suggestions or remarks about this program, or if you
  27. find any bugs, please let me know. Naturaly I won't refuse any 
  28. gifts. When sending in bug reports, please state exactly under what
  29. circumstances the bug occurred, what equipment was used and what
  30. happened.  If possible also try to give me enough information to
  31. reproduce the bug.  It is very difficult to find bugs when you
  32. don't know exactly what happened.
  33.  
  34. Write to the following address:
  35.  
  36.         Harald Pehl
  37.         Equarhofen 8
  38.         97215 Uffenheim
  39.         Germany - Europe
  40.  
  41.  
  42.  
  43.  
  44.  
  45. Introduction
  46. ------------
  47.  
  48. Change is a simple command which transforms numbers of one systems
  49. into numbers of another system. Binary, octal, hexadecimal and 
  50. decimal numbers are supported.
  51.  
  52.  
  53.  
  54.  
  55. Usage 
  56. -----
  57.  
  58. Change can be started from the CLI, and expects fallowing arguments:
  59.  
  60.    Change [-d] [-h] [-o] [-b] Zahl
  61.  
  62.    · -d:   The Number is displayed in decimal.
  63.    · -h:   The Number is displayed in hexadezimale.
  64.    · -o:   The Number is displayed in octal.
  65.    · -b:   The Number is displayed in binary.
  66.    · Zahl: The Number which should be transformed 
  67.    
  68.    If there's no letter in the arglist then the number is transformed into 
  69.    all systems.
  70.    All letters are case sensitive.
  71.    
  72. Some examples:
  73.  
  74.    Change -h -o 123:
  75.    displays:   
  76.    123 --> 0x7b (hex)    0173 (okt)
  77.    
  78.    Change -dOb 0XCAFE:
  79.    displays:   
  80.    0XCAFE --> 51966 (dez)    0145376 (oct)    
  81.               b1100101011111110 (bin)
  82.    
  83.  
  84.  
  85.  
  86. Description
  87. -----------
  88.  
  89. Change is a in C++ a in C++ written tool that was compiled with MaxonC.
  90. The - for a C-program - relativ small code was possible due to the fact
  91. that I used my own functions to calc the nummbers and because the program 
  92. was written in C++.
  93.  
  94.  
  95.  
  96. © 1993 Change V1.00 written by Harald Pehl
  97.                     Greetings to Florian Derks and Martin Gleiß.
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.