home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / fish / misc_utils / xnum / xnum.doc.english < prev    next >
Text File  |  1990-10-11  |  498b  |  22 lines

  1. XNum (c)1989 Oliver Enseling
  2. ----------------------------
  3.  
  4.  XNum is a CLI command to easy the handling of different numerical systems.
  5. It is called from the CLI by:
  6.  
  7. XNUM number1 [number2 [...]]
  8.  
  9. The arguments can be numbers in decimal, hexadecimal, binary or octal notation.
  10. They have to be encoded in the following way similar to C syntax:
  11.  
  12. decimal     : <n>
  13. hexadecimal : 0x<n>
  14. binary      : %<n>
  15. octal       : 0<n>
  16.  
  17. XNUM prints the given number in all the numerical formats listed above.
  18.  
  19. OE
  20.  
  21.  
  22.