home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / ibm1 / pcwiz01.arj / SORT.INS < prev    next >
Text File  |  1991-09-25  |  3KB  |  91 lines

  1. SORT    Used to "FILTER" data contained in a file and
  2.         DISPLAY it on the screen in a rearranged format
  3.         (Format 1); to create a new file that contains
  4.         the same data as another file, only in SORTED
  5.         order (Format 2); or to display the output of
  6.         another command in a SORTed format when used
  7.         as a "PIPE" (Format 3).
  8.  
  9. Format: 1) SORT <[D:Path]FileSpec [/R] [/+Col]
  10.  
  11.         2) SORT <[D:Path]SFile >[D:Path]DFile [/R][/+C]
  12.  
  13.         3) COMMAND [Para] | SORT [/R] [/+Col]
  14.  
  15.  
  16.   /R   sorts in REVERSE alphabetical order
  17.  
  18.   /+Col  causes the sorting to be based on the COLUMN
  19.          number specified.
  20.  
  21. Example:          SORT < PHONES.TXT
  22.  
  23.    Displays the contents of the PHONES.TXT file in the
  24.    CURRENT directory in alpha-order on your screen.
  25.  
  26.  
  27. Example:        SORT < \NOTES\PHONES.TXT /R
  28.  
  29.    Displays the contents of the PHONES.TXT file in the
  30.    \NOTES directory on the CURRENT drive in REVERSE
  31.    alpha-order on your screen.
  32.  
  33.  
  34. Example:       SORT < PHONES.TXT > PHONES.SRT /+35
  35.  
  36.    Creates a new file named PHONE.SRT that contains the
  37.    same data as is in the source file named PHONES.TXT,
  38.    except the data is now in alpha-order based on the
  39.    character in column 35. (e.,g,. character 35 is the
  40.    beginning of the area code in the PHONE.TXT file.)
  41.  
  42.  
  43.  
  44. Example:             DIR | SORT
  45.  
  46.    Displays directory listing of the CURRENT directory
  47.    that is sorted in alphabetical order.
  48.  
  49.  
  50. Example:         DIR \WP\*.TXT | SORT /+25
  51.  
  52.    Displays a directory listing of the \WP\*.TXT files
  53.    on the current drive that is sorted in alphabetical
  54.    order by file creation date.
  55.  
  56.  
  57. Example:       DIR D:\WP | SORT /+9 >LPT1
  58.  
  59.    Sorts the \WP directory on drive D: according to
  60.    file extension (col 9) and sends the output directly
  61.    to your printer where it is immediately printed. (An
  62.    example of both PIPING "|" and REDIRECTION ">" in a
  63.    single operation!)
  64.  
  65. Example:      DIR D:\WP | SORT >WPSORT.LST
  66.  
  67.    Same as above, except directory is sorted according
  68.    to file name and the output is REDIRECTED to a NEW
  69.    file named WPSORT.LST in the CURRENT directory. This
  70.    file can later be displayed on the screen using the
  71.    TYPE command or be printed using the COPY command
  72.    with the >LPT1 redirection parameter.
  73.  
  74. [*]  NEVER issued the SORT command WITHOUT specifying
  75.    parameters. A command of just "SORT" all by itself
  76.    will cause your computer to enter an endless loop.
  77.    If this accidentally happens, IMMEDIATELY shut-down
  78.    the system by either turning it off at the power
  79.    source or by using the "Alt-Ctrl-Del" sequence to
  80.    reset the system.
  81.  
  82. [*]  The sophisticated manipulations of file contents
  83.    you can perform using a combination of FILTERING,
  84.    REDIRECTION and PIPING is almost endless. Using the
  85.    basic formats and examples contained herein should
  86.    provide you with an understanding of how these
  87.    basic techniques work; and with a little "creative"
  88.    thinking and experimentation, you will begin to get
  89.    a real appreciation of just how "POWERFUL" the world
  90.    of DOS really is!
  91.