home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / sosutl11.zip / sostree.man < prev   
Text File  |  1993-08-12  |  2KB  |  58 lines

  1. SOS Tree
  2.  
  3. Description
  4.  
  5.     SOS Tree--directory tree drawer for OS/2.
  6.  
  7. Usage
  8.  
  9.     [D:\] sostree [ -adfnqz ] PATH
  10.  
  11.     Options:
  12.  
  13.     -a      Display file attributes in the format "ADHRS"
  14.     -d      Display dates and times too (in current national format).
  15.     -f      Include plain files too in the listing.
  16.     -n      List all directories (or all files and directories with -f
  17.             option) with full path names; do not draw the tree graph.
  18.     -q      Don't display the "Directory tree of ..." header.
  19.     -z      Display file sizes too. This switch is meaningless if -f
  20.             isn't used simultaneously.
  21.  
  22. Note
  23.  
  24.     This program is public domain. Copyrights are there only to show
  25.     who first wrote this program.
  26.  
  27. Note of re-compiling
  28.  
  29.     SOS Tree should be distributed with full C source code included.
  30.     If you compile the program with LANG_SUOMI symbolic constant de-
  31.     fined, you get the Finnish version. It should also be easy to make
  32.     other-language versions of the program: just search (with grep or
  33.     such tool) for all instances of the string
  34.  
  35.         #if defined(LANG_SUOMI)
  36.  
  37.     and include your new language section after it. For example, to
  38.     make an Esperanto version of SOS Tree:
  39.  
  40.         #if defined(LANG_SUOMI)
  41.             /* Finnish messages */
  42.         #elif defined(LANG_ESPERANTO)
  43.             /* Esperanto messages */
  44.         #elif defined(LANG_xxxx)
  45.             /* ... */
  46.         #else
  47.             /* English messages */
  48.         #endif
  49.  
  50.     Symbolic constants can be defined in the bcc command line like
  51.     this:
  52.  
  53.         [D:\] bcc -DLANG_ESPERANTO sostree.c
  54.  
  55. Version
  56.  
  57.     SOS Tree v1.0 (C) SuperOscar Softwares, 1993.
  58.