home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 May / PCWK5A99.ISO / Os2 / STREE117.ZIP / showtree / readme < prev    next >
Encoding:
Text File  |  1998-10-08  |  2.5 KB  |  63 lines

  1. ----------------------------------------------------------------------------
  2. What ShowTree does
  3. ----------------------------------------------------------------------------
  4.  
  5. ShowTree displays a directory tree in simple character graphics. 
  6.  
  7. ShowTree is a substitute for the tree command that comes with OS/2.
  8.  
  9. Enter "showtree -h" to find out how to use ShowTree. You may also want to have a look at the Rexx source code.
  10.  
  11. ----------------------------------------------------------------------------
  12. Important!
  13. ----------------------------------------------------------------------------
  14.  
  15. ShowTree is freeware. You pay for nothing, and I don't guarantee anything!
  16.  
  17. ----------------------------------------------------------------------------
  18. Files in this distribution
  19. ----------------------------------------------------------------------------
  20.  
  21. The left side below is an example for the kind of output that ShowTree generates (if you call it with "showtree -a -f"):
  22.  
  23. showtree\
  24. |--history          - Release history of ShowTree
  25. |--readme           - The file you are reading
  26. |--showtree.cmd     - The ShowTree script
  27. `--pgp\
  28.    |--history.sig   - PGP signature for history
  29.    |--readme.sig    - PGP signature for readme
  30.    `--showtree.sig  - PGP signature for showtree.cmd
  31.  
  32. ----------------------------------------------------------------------------
  33. RexxUtil
  34. ----------------------------------------------------------------------------
  35.  
  36. ShowTree requires functions from the RexxUtil DLL. These functions are used by many scripts. So, instead of trying again and again to load these functions, each time you run a script that needs them, you should consider loading them when you start your system. To do this, put a script (or a link to a script) into your startup folder, that has the following code in it:
  37.  
  38. /* Load Rexx System Utilities */
  39. rc = rxFuncAdd( 'sysLoadFuncs', 'rexxUtil', 'SysLoadFuncs' )
  40. if rc \= 0 then
  41.   say 'Cannot (re-)register RexxxUtil functions'
  42. else
  43.   do
  44.   call sysLoadFuncs
  45.   say 'RexxUtil.dll functions registered'
  46.   end
  47.  
  48. ----------------------------------------------------------------------------
  49. Miscellaneous
  50. ----------------------------------------------------------------------------
  51.  
  52. Enter "showtree /h" to get my email address.
  53.  
  54. To get my PGP public key, send me an empty email with "send pgp key" in the subject line.
  55.  
  56. I have a slightly different Perl 5 version of ShowTree that I use under Unix. If you are interested, send me an email.
  57.  
  58.  
  59.  
  60.  
  61. --
  62. $Id: readme,v 1.6 1998-10-05 21:24:57-04 rl Exp $
  63.