home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 003.lha / DosPlus1.doc < prev    next >
Text File  |  1986-03-02  |  3KB  |  74 lines

  1.                        DosPlus1.doc
  2.                             by
  3.                       Bill Beogelein
  4.  
  5. DosPlus adds additional commands to the Amiga's CLI.  Add the
  6. following files to the `c' directory of your WorkBench disk,
  7. they will be available from CLI at anytime.  The desciptions
  8. listed below are expressed in terms of parameters `passed'
  9. and values `returned'.  Square brackets `[]' mark optional
  10. information, a vertical bar `|' represents any ONE of several
  11. choices allowed.  Execute commands from CLI ONLY by entering
  12. command name and the parameter[s] as shown.  Entering just
  13. the command will list the `Usage' template giving additional
  14. guidelines.
  15.  
  16.             1)  ASC                5)  BIT    
  17.             2)  CHR                6)  WC     
  18.             3)  MATH               7)  HELP   
  19.             4)  CONV               8)  INPUT  
  20.             
  21. The original author offers these programs as `ShareWare'.
  22. Feel free to distribute them via user groups, BBS's, etc.
  23. If you've found the programs useful please send a small
  24. contribution to: 
  25.                        Bill Beogelein      
  26.                        P.O. Box 05256      
  27.                        Detroit, MI  48205  
  28. This support along with your suggestions will allow bug fixes,
  29. and updates for this and future software.
  30.                                                 Thank You
  31.  
  32. 1)  Usage:  ASC char [char] ... 
  33.     Pass single character, or string of characters, returns
  34.     each character's ASCii code in decimal, hexadecimal,
  35.     octal, and binary form.  Characters with an ascii
  36.     value >128 must be surrounded by double quotes.
  37. 2)  Usage:  CHR nmbr [nmbr] ... 
  38.     Pass ascii value[s] between 0-255, returns key strokes
  39.     required to produce CHaRacter[s], and hexadecimal, octal,
  40.     and binary equivalents. 
  41. 3)  Usage:  MATH ADD | SUB | MUL | DIV nmbr nmbr [nmbr] ... 
  42.     Pass numbers. 
  43.     Option ADD returns total sum. 
  44.     Option SUB returns SUBtracted difference. 
  45.     Option MUL returns MULtiplied product. 
  46.     Option DIV returns DIVided quotient. 
  47. 4)  Usage:  CONV DEC | HEX | OCT | BIN nmbr  [nmbr] ... 
  48.     CONVerts nmbr from specified base to other forms.
  49.     If DEC, nmbr must range from 0-65535    
  50.     If HEX, nmbr must range from 0-FFFF     
  51.     If OCT, nmbr must range from 0-177777    
  52.     If BIN, nmbr must range from 0-1111111111111111 
  53. 5)  Usage:  BIT a AND | OR | XOR | EQV | IMP b 
  54.     Performs any one bit-wise operation, AND (conjunction),
  55.     OR (disjunction), XOR(eXclusive OR), EQV (equivalence),
  56.     or IMP (implication) on values `a' and `b'.  
  57. 6)  Usage:  WC filename [filename] ...
  58.     Pass filename[s], returns number of words, number of lines,
  59.     number of binary characters, total number of characters,
  60.     and a unique checksum value.  The checksum can be used to
  61.     compare files thought to be identical.
  62. 7)  Usage:  HELP command [command] ... 
  63.     Pass standard AmigaDos or DosPlus command[s], returns
  64.     template and help information. 
  65. 8)  Usage:  INPUT prompt 
  66.     Use only in executable batch files.  Executes similar to
  67.     BASIC'c `INPUT "My prompt string",a$' command.  Displays
  68.     prompt string, accepts input from user and writes to file
  69.     `ram:UserInput.data'.  Retrieve entered text into desired
  70.     program with `COMMAND <ram:UserInput.data'. 
  71.  
  72.  
  73.  
  74.