home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 2 / FFMCD02.bin / new / util / misc / actool / actool.doc < prev    next >
Text File  |  1993-12-21  |  3KB  |  139 lines

  1. Document ACTool version 1.0
  2.  
  3.  
  4.                        ACTool Program Documentation
  5.                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  6.  
  7.                                 Version 1.0
  8.                                 ~~~~~~~~~~~
  9.  
  10.  
  11. 1. Copyright
  12. ============
  13.  
  14.  ACTool v1.0 is © Laurent Papier 1993.
  15.  
  16.  ACTool is freely redistributable.
  17.  
  18. The files in this archive were written by Laurent Papier and are freely
  19. distributable as long as the archive remains intact, and only a nominal
  20. fee is charged for its distribution.
  21.  
  22. This software is provided "AS IS" without warranty of any kind, either
  23. expressed or implied. By using it, you agree to accept the entire risk as
  24. to the quality and performance of the program.
  25.  
  26. Comments, suggestions and bug reports are welcome. See `The author'.
  27.  
  28.  
  29. 2. Introduction
  30. ===============
  31.  
  32. ACTool is a program for integer convertion between :
  33.  
  34.   - Decimal/Octal/Binary/Hexadecimal
  35.  
  36.  and
  37.  
  38.   - Decimal/Octal/Binary/Hexadecimal
  39.  
  40.  
  41. ACTool have a GUI interface and is compatible OS 1.3/2.x/3.x.
  42. ACTool should run on every system.
  43.  
  44. ACTool is written using IObject.lib from Christophe Passuello which
  45. emulate some of the gadget of the gadtools.library.
  46. IObject.lib is © Christophe Passuello 1993.
  47.  
  48. ACTool is very easy to use, so just try it and you will understand how
  49. it works.
  50.  
  51. ACTool have both english and french interface. See `Usage'.
  52.  
  53.  
  54. 3. Usage
  55. ========
  56.  
  57.  ACTool can be start from CLI or Workbench.
  58.  All options are case insensitive.
  59.  
  60.  
  61. 3.1. CLI usage
  62. --------------
  63.  
  64.     Usage: ACTool [?]
  65.            ACTool <number> <base> ...
  66.  
  67.     option :
  68.  
  69.     ?           : print usage.
  70.  
  71.     <number>    : input number.
  72.  
  73.         789 -> decimal number
  74.         @45 -> octal number
  75.         %11 -> binary number
  76.         $2b -> hexadecimal number
  77.  
  78.     <base>      : output base.
  79.  
  80.         dec | d    : decimal
  81.         oct | o    : octal
  82.         bin | b    : binary
  83.         hex | h    : hexadecimal
  84.  
  85.  
  86.   Examples:
  87.  
  88.     - convert hexadecimal number 'ff' to decimal
  89.  
  90.         ACTool $ff dec
  91.         $ff = 255
  92.  
  93.     - convert hexadecimal number 'ff' to binary and decimal number '255'
  94.       to hexadecimal
  95.  
  96.         ACTool $ff b 255 hex
  97.         $ff = 11111111
  98.         255 = ff
  99.  
  100.  
  101. 3.2. Workbench usage
  102. --------------------
  103.  
  104.   Just double-click on its icon.
  105.  
  106.   By default ACTool starts in english mode.
  107.  
  108.  
  109.     Tooltypes:
  110.  
  111.         LANGAGE=francais        : french mode.
  112.  
  113.  
  114. 4. The author
  115. =============
  116.  
  117. If you have suggestions or remarks about this program, or if you find
  118. any bugs, please let me know.
  119.  
  120.     Contacting the author:
  121.  
  122.     Internet: papier@tris.u-strasbg.fr
  123.  
  124.     Mail:   Papier Laurent
  125.             11 rue BERLIOZ
  126.             67202 WOLFISHEIM
  127.             FRANCE
  128.  
  129. If you can please use e-mail.
  130.  
  131.  
  132. 5. Notes
  133. ========
  134.  
  135. The text documentation is written for Text2Guide, a program that can
  136. convert text files to AmigaGuide files.
  137. Text2Guide is © Stephan Sürken 1993.
  138.  
  139.