home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 3 / Meeting_Pearls_III.iso / CLI.readme < prev    next >
INI File  |  1995-10-10  |  3KB  |  80 lines

  1. [Translation  from  the German text 'CLI.liesmich'. Translation by Markus
  2. Illenseer, proofread by Jürgen Weinelt]
  3.  
  4. Because  you  have found this file, you probably don't use the Workbench,
  5. but  the shell to browse the Meeting Pearls CD-ROM.
  6.  
  7. --- Required Assigns ---
  8.  
  9. First  of  all you should start the script "SYS/S/Meeting-Startup" to set
  10. some search paths and some assigns.
  11.  
  12. --- finding software packages ---
  13.  
  14. With  the  help  of pgrep (found in C/pgrep) you can search for arbitrary
  15. expressions  in  our  indices.  The  manual  of  pgrep  can  be  found in
  16. 'Pearls/dev'. Please note that pgrep does not just search for strings but
  17. also for AmigaDOS-patterns and can be run on all Kickstart versions since
  18. 1.2.   The   pattern.library   must   be   present  though.  If  you  use
  19. AmigaDOS-Patterns,  the  search will obviously take more time to complete
  20. than the search for a simple string.
  21.  
  22.   Example:
  23.  
  24.   pgrep Misc Index/Path_Short
  25.  
  26.   All  software  packages containing the word 'Misc' in the path or short
  27.   description will be found and displayed.
  28.  
  29. As  a  shell-user  you  certainly  have  quite a lot of other interesting
  30. possibilities  for further use of the output! To help you there, we wrote
  31. three small tools which are capable to work column-wise on text files and
  32. are fully pipeable. These tools can be found in the C-drawer.
  33.  
  34. copycolumn:   Takes stdin and writes characters from char <n> to <m> per
  35.               line to stdout.
  36.  
  37. deletecolumn: Takes stdin and writes the remaining characters from <n>
  38.               to <m> to stdout.
  39.  
  40. insertcolumn: Inserts a string from stdin from char <n> per line. This
  41.               can be the same string or consecutive lines of a file.
  42.  
  43. Therefor the following constructions are possible:
  44.  
  45.   pgrep Misc Index/All | deletecolumn 67 51 | deletecolumn 149 41 |
  46.         deletecolumn 200 1000
  47.  
  48. We recommend that you wrap these tools into some macros or aliases to fit
  49. your personal use.
  50.  
  51. --- Copying software packages ---
  52.  
  53. You  should  use  the script 'CopyToHD' to copy software packages to your
  54. hard disk drive. You can find it in the SYS/S-drawer.
  55.  
  56. The  parameter  FROM  and  TO should be self-explanatory. You specify the
  57. desired  source  and  destination drawer. USEMETATOOL installs some stuff
  58. for  MetaTool  on  your  harddisk. As CLI-User you probably won't want to
  59. specify this argument.
  60.  
  61. The  script  expects that some environment variables are set. It requires
  62. one  environment  variable  for  each  metatype.  Each of these variables
  63. contains  a  string  which  will be set into the defaulttool of each icon
  64. which  contains the corresponding metatype as tooltype. Just set FPMTTEXT
  65. to  your favourite text viewer, FPMTGUIDE to AmigaGuide or MultiView etc.
  66. If  you  have installed Matthias' MetaTool, it is probably useful just to
  67. specify  'METATOOL' as argument. The MetaTool will be loaded and will use
  68. the  configuration file to decide which program to start. Please read the
  69. manual for MetaTool.
  70.  
  71. CopyToHD does not only copy drawers, it also repairs the protection flags
  72. and  the  filenotes that were lost during the ISO9660 mastering. Also all
  73. the  default  tools  ":C/MetaTool"  will  be  replaced  according to your
  74. parameters and depending from the tooltype METATYPE.
  75.  
  76. And now - enjoy your new Meeting Pearls CD-ROM!
  77.  
  78.    Angela Schmidt
  79. [Translation by Markus Illenseer, later changes by Angela Schmidt]
  80.