home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / iconea.zip / ICONEA.DOC < prev    next >
Text File  |  1992-07-15  |  3KB  |  54 lines

  1. /*=======================================================================*/
  2. /* European Personal Systems Centre, Mountbatten House, Basingstoke, UK. */
  3. /*=======================================================================*/
  4. /* SECURITY     ===>  IBM ESDTools Use Only
  5. */
  6. /* PROGRAM NAME ===>  ICONEA.CMD                                         */
  7. /* VERSION      ===>  1.16                                               */
  8. /* RELEASE      ===>  4                                                  */
  9. /* LANGUAGE     ===>  OS/2 Procedures Language 2/REXX                    */
  10. /* AUTHOR       ===>  Karri Mooney                                       */
  11. /* DATE         ===>  14th July 1992                                     */
  12. /* SUPPORT      ===>  Author                                             */
  13. /* PURPOSE      ===>  To attach an icon, bitmap or metafile to a file or */
  14. /*              ===>  files in Extended Attributes.                      */
  15. /*              ===>                                                     */
  16. /* SYNTAX       ===>  ICONEA File_Name Source_File Option                */
  17. /*              ===>                                                     */
  18. /*              ===>  where: File_Name is the target file (wildcards are */
  19. /*              ===>         supported).                                 */
  20. /*              ===>                                                     */
  21. /*              ===>         Source_File is a .ICO, .BMP or .MET file    */
  22. /*              ===>         (only one file can be specified).           */
  23. /*              ===>                                                     */
  24. /*              ===>    and: Option can be either blank or /S for        */
  25. /*              ===>         recursive search through subdirectories.    */
  26. /*              ===>                                                     */
  27. /* SYSTEM S/W   ===>  Operating System/2 Version 2.00                    */
  28. /*=======================================================================*/
  29. /* CHANGE HISTORY:                                                       */
  30. /*                                                                       */
  31. /* Version Release DD/MM/YY Comments                                     */
  32. /*=======================================================================*/
  33. /*    1.00    1    29/06/92 First Release.                               */
  34. /*    1.05    -    01/07/92 Added support for bitmaps and metafiles.     */
  35. /*    1.07    -    01/07/92 Added support for multiple files (wildcards).*/
  36. /*    1.10    2    01/07/92 Added checking routines that a file is an    */
  37. /*                          icon, bitmap or a metafile.                  */
  38. /*    1.15    3    14/07/92 Added recursive search through all           */
  39. /*                          subdirectories. Thanks to Richard Polisuk for*/
  40. /*                          the suggestion.                              */
  41. /*    1.16    4    14/07/92 Added check for REXXUTIL.DLL.                */
  42. /*=======================================================================*/
  43.  
  44.  ICONEA.CMD is a small REXX Command file which attaches an icon, a bitmap
  45.  or a metafile to a file or set of files in Extended Attributes.
  46.  
  47.  EXAMPLE: ICONEA D:\*.HLP HELP.ICO /S
  48.  
  49.           would attach HELP.ICO to all files residing on drive D.
  50.  
  51.  Note:   -S can also be used instead of /S if preferred.
  52.  
  53. Have fun, Karri.
  54.