home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / shell / apipe-handler / product-info < prev    next >
Encoding:
Text File  |  1995-10-23  |  1.7 KB  |  71 lines

  1. .name
  2. APIPE
  3. .fullname
  4. APipe-Handler
  5. .version
  6. 37.7
  7. .date
  8. 1994.12.18
  9. .type
  10. Handler
  11. .short
  12. Alternative pipe handler (incl. source)
  13. .description
  14. The `APipe-Handler' allows you to add the `APIPE:' DOS device to your
  15. system.  This device acts as a pipe between two programs, but in a
  16. different manner than the standard `PIPE:' device does.  This handler
  17. interprets the text after the `APIPE:' prefix as a command line
  18. to execute, and the process/command which opens the file indicated
  19. by the mention of `APIPE:' can now read the standard output or write
  20. the standard input of the program indicated by the command line
  21. depending on whether the `APIPE:' file was opened for reading or
  22. writing, respectively.   Thus, the opening an `APIPE:' file is analogous
  23. to the UNIX `popen()' call, but it is more widely available to the user.\n
  24. Complete source is included and can be used as an example of a handler.
  25. .author
  26. Per Bojsen
  27. .requirements
  28. Requires AmigaOS 2.04 (V37) or later
  29. .distribution
  30. Freeware
  31. .address
  32. Maglegaards Alle 51, st. th.
  33. DK-2860 Soeborg
  34. Denmark
  35. .email
  36. bojsen@moria.home.id.dtu.dk
  37. bojsen@cbmden.adsp.sub.org
  38. bojsen@id.dtu.dk
  39. bojsen@ithil.id.dtu.dk
  40. pb@delta.dk
  41. .exectype
  42. 68000
  43. .installsize
  44. 4K - 51K
  45. The source can be trimmed from the installation saving 47K.
  46. .construction
  47. SAS/C 6.51 with full optimization
  48. .tested
  49. A3000.  No Enforcer hits known.  Tested under AmigaOS V37 through V40.
  50. .docs
  51. README
  52. .described-by
  53. Per Bojsen (bojsen@moria.home.id.dtu.dk)
  54. .aminet-dir
  55. util/shell
  56. .execute
  57. set choice `RequestChoice "APipe-Handler" "Please select an option" "View Readme" "Mount APIPE:" "Cancel"`
  58.  
  59. if $choice EQ "0"
  60.   quit 5
  61. endif
  62.  
  63. if $choice EQ "1"
  64.   MetaTool README TEXT
  65. endif
  66.  
  67. if $choice EQ "2"
  68.   assign l: "" ADD
  69.   mount APIPE: from Mountlist
  70. endif
  71.