home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / assemblr / library / shell11 / s.doc < prev   
Text File  |  1991-12-01  |  4KB  |  78 lines

  1. S.COM -- a small, fast MS-DOS shell, version 1.1, 1 Dec, 1991.
  2.  
  3. Thanks for downloading S!  S is an enhanced replacement for several DOS
  4. commands, including DIR, DEL, COPY, and REN.  When run, it displays all files
  5. in a directory matching the filespec given on the command line (if S is run
  6. without any arguments, it displays all files in the current directory).  You
  7. may then edit, run or rename a single file, copy, move or delete multiple
  8. files, sort the files by name, extension or date, or change the drive,
  9. directory or filespec.
  10.  
  11. Using the cursor keys (up, down, right and left arrows and PgUp and PgDn), move
  12. the inverse video bar to the desired file name.  Information regarding the
  13. highlighted file is shown on the top status line, including file size, date,
  14. time, and attributes, as well as the current directory and filespec (if the
  15. filespec includes the name of another directory, the current directory will be
  16. different from the one containing the files displayed).  Then press the
  17. following keys for these actions:
  18.  
  19. Enter:  If the directory entry has an extension of .COM, .EXE or .BAT, run it.
  20.     it is a directory, go to it.  Pressing Enter when '..' is highlighted moves
  21.     you up to the parent directory from a subdirectory.  Pressing Enter at '.'
  22.     makes the directory of the current filespec the default directory.
  23.  
  24. CTRL Enter:  Like Enter, but prompts the user for command line arguments to
  25.     supply the program to run
  26.  
  27. R:  Rename the highlighted file or directory.
  28.  
  29. E:  Edit or view the highlighted file.  S is set up to use my editor E for this
  30.     purpose.  If you prefer not to use E, use debug to look for the string '\C
  31.     E' and overwrite E and as many of the following nulls as necessary with the
  32.     name of your preferred editor (the string must end with a null).
  33.  
  34. T:  Tag the highlighted file to indicate that it is to be acted on by Copy,
  35.     Move or Delete.  If it is already tagged, untag it.
  36.  
  37. C:  Copy the tagged files to another directory and/or drive (you will be
  38.     prompted for the destination path).
  39.  
  40. M:  Move the tagged files to another directory and/or drive.
  41.  
  42. D:  Delete the tagged files.
  43.  
  44. F:  Prompt user for a new filespec.  If you just press Enter at the prompt,
  45.     '*.*' will be used.  The new filespec may include a path, allowing you to
  46.     inspect another directory or drive without changing the default drive.
  47.  
  48. V:  Switch to a different drive.
  49.  
  50. S:  Sort the current list of files.  You will be asked whether you want to sort
  51.     by Name, Extension or Date.
  52.  
  53. F1: Show a summary of available commands at the top of the screen.
  54.  
  55. F2: Shell to DOS.
  56.  
  57. Esc:  Exit back to DOS.
  58.  
  59.  
  60. S is copyrighted but you are hereby granted a limited license to use it free of
  61. charge.  While I am not aware of any bugs, I make no guarantees about its
  62. trustworthiness, so use it at your own risk.  Feel free to share it with
  63. others.  I only ask that you distribute these files together and unchanged and
  64. charge nothing for them (a distribution fee of up to $15 is allowed).  I'd
  65. appreciate hearing about any bugs, and welcome any other comments.  To contact
  66. me, leave mail to dnye on BIX or write me at the address below.  Please enclose
  67. a stamped, self-addressed envelope if you write and want a reply.
  68.  
  69.  
  70.                                                       David Nye MD
  71.                                                       4209 W Lowe's Creek Rd.
  72.                                                       Eau Claire, WI  54701
  73.                                                       BIX name: dnye
  74.  
  75. Version history:
  76.  
  77. 1.1:  Display is now vertically rather than horizontally arranged.  Sort,
  78. Execute with Command Tail, Shell to DOS, New Drive commands added.