home *** CD-ROM | disk | FTP | other *** search
/ Hot Shareware 32 / hot34.iso / ficheros / DUTI / DOSBASH.ZIP / README.TXT < prev   
Text File  |  1998-04-18  |  4KB  |  128 lines

  1. Program: DosBASH
  2. Author:  Ronald J. Lawrence
  3. Email:   lawrence@elvis.allencol.edu
  4.  
  5. Introduction
  6.     DosBASH is a DOS command utility that combines the best features of
  7. popular utilities such as DosKey and the UNIX shell, Bash.
  8.  
  9. Installation
  10.     To install DosBASH, simply run the install program from the directory
  11. where DosBASH was unzipped.
  12.  
  13. Features
  14.     - Recall Previous Commands
  15.     The use of the up and down arrow keys will scroll through past commands
  16.     Example: pressing the up arrow key five times will recall the fifth
  17.     last command entered.
  18.  
  19.     - Previous Command Completion
  20.     The use of the <F3> key will finish the previous command entered.
  21.     Example: if the command MD TEMP is entered, then in the next line,
  22.     CD <F3>, the command line would then read CD TEMP (from previous
  23.     command)
  24.  
  25.     - Tab Command Line Completion
  26.     The use of the tab key will finish any filename or directory name
  27.     in the current directory.
  28.     Example: if the command, EDIT AU<TAB> was entered, the tab key would
  29.     finish the word AUTOEXEC.BAT, if that file existed in your current
  30.     directory.  If multiple files exist that have a similar name,
  31.     a situation such as this might occur:
  32.                                 EDIT AU<TAB>
  33.          After tab command:     EDIT AUTOEXEC.
  34.                                 EDIT AUTOEXEC.O<TAB>
  35.          After second tab:      EDIT AUTOEXEC.OLD
  36.  
  37.     - Alias Support
  38.     The file DOSBASH.CMD is used as an alias file.  This works
  39.     similar to a DOS batch command or a UNIX alias.  The following is
  40.     a sample DOSBASH.CMD alias file:
  41.  
  42.     LS=DIR
  43.     CLEAR=CLS
  44.     DIR=DIR /OG
  45.     X=EXIT
  46.     W=WIN
  47.     COMMAND=DOSBASH.EXE
  48.  
  49.     In this example, every "LS" command would be substituted with a
  50.     "DIR" command.  Likewise, every "DIR" command would be substituted
  51.     with a "DIR /OG" command to group the names in order by group.
  52.     The DOSBASH.CMD file must be placed in your root directory
  53.     (C:\) or this version of DosBASH will not use the aliases.  The DosBASH.CMD
  54.     file can be edited with a standard DOS text editor, such as EDIT.COM.
  55.     To edit this file, the following command can be entered:
  56.  
  57.        EDIT C:\DOSBASH.CMD
  58.  
  59.     Or to add one command to the file:
  60.  
  61.        ECHO LS=DIR >> C:\DOSBASH.CMD
  62.  
  63.     - Long Filename Support
  64.     When using the <TAB> key to complete a command, DosBASH can recognize
  65.     long filenames in Windows 95/NT.  For example if the following command
  66.     is entered in DosBASH:
  67.  
  68.         CD PRO<TAB>
  69.  
  70.     This would then produce the command:
  71.         CD "Program Files"
  72.  
  73.     - Additional Features
  74.     DosBASH v1.0 also supports two optional command line parameters.
  75.     First, typing the following command at the command line will list
  76.     all commands in DosBASH memory (all commands entered in this session)
  77.  
  78.         DOSBASH /H
  79.  
  80.     Secondly, the following command will list all commands in the
  81.     DOSBASH.HIS file, which will list all commands ever entered
  82.     by DosBASH.
  83.  
  84.         DOSBASH /F
  85.  
  86.     - New Files Added by DosBASH
  87.  
  88.       DOSBASH.EXE     Executable program file for DosBASH
  89.       DOSBASH.CMD     DosBASH alias file
  90.       DOSBASH.HIS     History file for DosBASH
  91.       DOSBASH.TMP     DosBASH temporary file (don't try to edit with this)
  92.       INSTALL.EXE     Installation File for DosBASH
  93.       README.TXT      This file
  94.  
  95.  
  96.  
  97. More Information:
  98.     This is the first version of DosBASH released, future versions will
  99. be available soon.  Please check back for updated version numbers; or
  100. email me for availability.  For those of you who live and love UNIX,
  101. I created this program for you, I hate trying to navigate around the
  102. DOS environment without the BASH shell TAB command also.  I am always
  103. open to suggestions for improving my products, so if you have suggestions
  104. on how DosBASH can be improved, please email me (see contact info below).
  105. Lastly, if you have any questions/comments in general, feel free to
  106. contact me.
  107.     I would like to give special thanks to my co-worker and friend Mark
  108. for giving me some ideas while developing DosBASH.
  109.     As always, if you enjoy this program drop me and line and let me
  110. know what you think of DosBASH.
  111.  
  112.  
  113. License:
  114.     This product is freeware, feel free to distribute it.
  115.  
  116. Contact Information:
  117.     Author: Ronald J. Lawrence
  118.     Email:  lawrence@elvis.allencol.edu
  119.     Web:    http://www2.allencol.edu/~lawrence
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.