home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / dev / misc / SP_ProjectMan.lha / sp-projectman / Rexx / show.sman < prev   
Encoding:
Text File  |  1996-12-26  |  411 b   |  22 lines

  1. /*
  2.  - show.sman
  3.  -
  4.  - ARexx program to display the content of a file.
  5.  - The display tool depends of the file extension.
  6.  - The tool is launched asynchronously.
  7.  -
  8.  - © Copyright 1995-1996 Bernard Krummenacher Silicon-Peace
  9.  -
  10.  - Bernard Krummenacher    Silicon-Peace 95.04.11    Created this file.
  11. */
  12.  
  13. parse arg FileName
  14.  
  15. options results
  16.  
  17. say FileName
  18.  
  19. address COMMAND 'run multiview >NIL: <NIL:' FileName
  20.  
  21. return 0
  22.