home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR13 / 4DOS_5.ZIP / 4DOS5LST.TXT < prev   
Internet Message Format  |  1993-11-16  |  10KB

  1. From news Mon Nov 15 22:52:11 1993
  2. Newsgroups: comp.os.msdos.4dos
  3. Path: uwm.edu!spool.mu.edu!howland.reston.ans.net!math.ohio-state.edu!cyber2.cyberstore.ca!nntp.cs.ubc.ca!utcsri!cannon.ecf!willer
  4. From: willer@ecf.toronto.edu (WILLER  STEVEN)
  5. Subject: 4DOS 5.0 feature list
  6. Message-ID: <CGK0z7.6wJ@ecf.toronto.edu>
  7. Summary: 4DOS 5.0 feature list (crossposted) 
  8. Keywords: 4dos features announce 
  9. Sender: news@ecf.toronto.edu (News Administrator)
  10. Organization: University of Toronto, Engineering Computing Facility
  11. Date: Mon, 15 Nov 1993 22:25:54 GMT
  12. Lines: 249
  13.  
  14. Wow! I just received my WordPerfect/Win 6.0 box this morning, Word 6 is
  15. coming out, Excel's out soon, Quattro recently came out, DOS 6.2 recently
  16. came out...this is just the time for upgrades!
  17.  
  18. Anyway, here's the feature list that was also posted by JP (I think on
  19. FidoNet). Again, sorry if you already knew this.
  20.  
  21. -------------------------------------------
  22.  
  23. JP Software is pleased to announce:
  24.  
  25.      * Version 5.0 of 4DOS, our award-winning command processor
  26.      for DOS 2.0 through 6.2.
  27.  
  28.      * Version 2.0 of 4OS2, our enhanced command processor for
  29.      OS/2 1.x and 2.x.
  30.  
  31.      * Version 2.0 of 4DOS/NT, our enhanced command processor for
  32.      Windows NT 3.1.
  33.  
  34. This message summarizes the new features in this major update.  A
  35. complete list of changes for each product will be available for
  36. download when the product is released.
  37.  
  38. See the previous message for upgrade information and details on
  39. planned release dates.
  40.  
  41.  
  42. This release includes:
  43.  
  44.  
  45. General Features and Enhancements
  46. ---------------------------------
  47.  
  48.      * Full support for MS-DOS 6.2 and OS/2 2.1.
  49.  
  50.      * File selection by date, time, and size for all file
  51.      processing commands with our new date, time, and size
  52.      ranges.  Affects ATTRIB, COPY, DEL, DESCRIBE, DIR, FOR,
  53.      LIST, MOVE, RD, REN, SELECT, AND TYPE.
  54.  
  55.      * Support for global alias and history lists in 4DOS, so
  56.      that you can share aliases and / or the command history
  57.      between multiple shells.
  58.  
  59.      * .BTM files can now be compressed with the new BATCOMP
  60.      utility.  4DOS, 4OS2, and 4DOS/NT read and process
  61.      compressed .BTM files just as if they were normal
  62.      (uncompressed) files.  This makes it easy for PC and network
  63.      managers to distribute batch files whose contents cannot
  64.      readily be altered by the end user.
  65.  
  66.      * The maximum file description length has been increased to
  67.      200 characters, and DIR description displays are word-
  68.      wrapped to show the entire description.
  69.  
  70.      * Over a dozen new or enhanced .INI file directives,
  71.      including the ability to prompt for each directive when
  72.      processing the .INI file.
  73.  
  74.      * AUTOEXEC.BAT now supports batch arguments.
  75.  
  76.      * Fixes for all known bugs.
  77.  
  78.  
  79. Command Line Editing and History
  80. --------------------------------
  81.  
  82.      * A new popup directory history window which shows recent
  83.      directories you've used.
  84.  
  85.      * A new file name completion window.
  86.  
  87.      * The ability to set the colors for input you type at the
  88.      prompt.
  89.  
  90.      * The ability to control whether a command recalled from the
  91.      history is copied back to the end of the history list.
  92.  
  93.      * A new kind of keystroke alias which executes "silently"
  94.      (is not displayed on the screen), and "immediately" (without
  95.      pressing Enter).
  96.  
  97.      * A new "UNKNOWN_CMD" alias which can be executed if you
  98.      enter an unknown command.
  99.  
  100.  
  101. Command Changes
  102. ---------------
  103.  
  104.      * The prompt options for COPY, DEL, GLOBAL, MOVE, and REN
  105.      have a third option now:  'R' (Rest, or Remainder) turns off
  106.      the Y/N/R prompt and performs the operation on the remainder
  107.      of the matching files.
  108.  
  109.      * A new switch, /T(otal) for COPY, DEL, MOVE, and REN,
  110.      disables the display of file names (like /Q) but still
  111.      displays the totals.
  112.  
  113.      * DEL now displays the disk space freed in the summary line,
  114.      and (under 4DOS) supports the /F(orce delete) option in OS/2
  115.      2.1 DOS sessions.
  116.  
  117.      * New DIR switches and switch changes, including:
  118.  
  119.           /C:  You can now use /CP or /CHP to return the
  120.           compression value as a percentage instead of a ratio
  121.           under 4DOS.
  122.  
  123.           /H:  Do not display "." and "..".
  124.  
  125.           /I:  Display only those files whose descriptions match
  126.           the specified text.
  127.  
  128.           /R:  Disable long description wrapping.
  129.  
  130.      * DO, a new loop control command for batch files.  You can
  131.      use several methods to control the loop:
  132.  
  133.           DO n:  Repeat the loop n times.
  134.  
  135.           DO FOREVER:  Repeat the loop until you exit with LEAVE
  136.           or GOTO.
  137.  
  138.           DO var = start TO end [BY n]:  Repeat the loop until
  139.           the variable passes the end value.
  140.  
  141.           DO WHILE condition:  Repeat the loop while the
  142.           condition is true (the condition can be any of those
  143.           available in the IF and IFF commands).
  144.  
  145.           DO UNTIL condition:  Repeat the loop until the
  146.           condition becomes true.
  147.  
  148.      A loop terminates with an ENDDO.  You can use ITERATE to
  149.      return to the start of a loop, and LEAVE to exit a loop.
  150.  
  151.      * IF and IFF now support decimals in numeric tests.
  152.  
  153.      * INKEY has two new switches:
  154.  
  155.           /C:  Clears the keyboard buffer before accepting input.
  156.           /P:  Does not echo your input (for passwords).
  157.  
  158.      * INPUT has four new switches:
  159.  
  160.           /C:  Clears the keyboard buffer before accepting input.
  161.           /E:  Displays and allows you to edit an existing value.
  162.           /L:  Sets the maximum input length.
  163.           /P:  Displays asterisks for your input (for passwords).
  164.  
  165.      * KEYBD, a new command to toggle the state of the Caps Lock,
  166.      Num Lock, and Shift Lock keys.
  167.  
  168.      * LIST has been completely rewritten and offers many new
  169.      features.  Line numbers are displayed, and you can go to a
  170.      specific line; hexadecimal display, print, and search are
  171.      now supported; there is a popup window which shows the
  172.      current fully expanded filename, size, date, and time; and
  173.      most operations are significantly faster.
  174.  
  175.      * LOG now supports a "history" log, which is independent
  176.      from the regular command log.  The history log saves the
  177.      original commands entered into the history list, without the
  178.      date and time information stored in the normal log file, and
  179.      before alias and variable expansion.
  180.  
  181.      * MD has a new switch:  /S builds all necessary intermediate
  182.      directories.
  183.  
  184.      * MOVE now displays the space freed (if any), like DEL, and
  185.      (under 4DOS) supports the /F(orce delete) option in OS/2 2.1
  186.      DOS sessions.
  187.  
  188.      * ON, a new error-handling command for batch files:
  189.  
  190.           ON BREAK command:  Execute the command when ^C or
  191.           ^Break is detected.
  192.  
  193.           ON ERROR command:  Execute the command after a DOS or
  194.           4DOS error.
  195.  
  196.      * SELECT supports the new /I switch (see DIR).
  197.  
  198.      * SETDOS has 4 new options:
  199.  
  200.           /B:  Sets your EGA or VGA board for blinking text or
  201.                bright background colors.
  202.           /D:  Enables or disables description processing for
  203.                COPY, DEL, MOVE, and REN.
  204.           /X:  Controls command parsing.  You can enable or
  205.                disable alias and variable expansion, multiple and
  206.                conditional commands, redirection and pipes,
  207.                command grouping, quoting, and the escape
  208.                character.
  209.           /Y:  Enables or disables single-step operation in batch
  210.                files.  Use for batch file debugging.
  211.  
  212.      * START is a new command for 4DOS users running OS/2 2.1.
  213.      It starts a DOS, Windows, or OS/2 application from an OS/2
  214.      DOS session.
  215.  
  216.  
  217.  
  218. Internal Variables and Variable Functions
  219. -----------------------------------------
  220.  
  221.      * Over 15 new internal variables, including:
  222.  
  223.           _APMAC         AC status (4DOS only)
  224.           _APMBATT       Battery status (4DOS only)
  225.           _APMLIFE       Remaining battery life (4DOS only)
  226.           _COUNTRY       Country code
  227.           _DAY           Day of the month (1 - 31)
  228.           _DOY           Day of the year (1 - 366)
  229.           _HOUR          Hour (0 - 23)
  230.           _MINUTE        Minute (0 - 59)
  231.           _MONTH         Month of the year (1-12)
  232.           _SECOND        Second (0 - 59)
  233.           _SYSERR        Error code for the most recent operating
  234.                          system error
  235.           _WINTITLE      Title of the current session or window
  236.           _YEAR          Year (1980-2099)
  237.  
  238.  
  239.      * Over 15 new variable functions, including:
  240.  
  241.           @CDROM         CD-ROM drive detection
  242.           @DEC           Decremented value of a variable
  243.           @FILEAGE       Age of a file
  244.           @FILECLOSE     Close a file
  245.           @FILEOPEN      Open a file
  246.           @FILEREAD      Read a line from a file
  247.           @FILES         Count files which match a wildcard name
  248.           @FILESEEK      Seek to a new location in a file
  249.           @FILEWRITE     Write text to a file
  250.           @FINDFIRST     Find the first file which matches a
  251.                          wildcard name
  252.           @FINDNEXT      Find the next matching file
  253.           @INC           Incremented value of a variable
  254.           @MASTER        Return a value from the master
  255.                          environment (4DOS only)
  256.           @RANDOM        Return a random number
  257.           @TRIM          Return a string with whitespace removed
  258. ---
  259.  * Channel 1(R) * 617-354-7077 * Cambridge MA * 85 lines
  260.  * PostLink(tm) v1.11  CHANNEL1 (#15) : RelayNet(tm)
  261.  
  262.  
  263.