home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / figlet21.zip / showone.cmd < prev    next >
OS/2 REXX Batch file  |  1996-03-06  |  333b  |  17 lines

  1. /* Ben Kleinman March 6,1996 */
  2. /* Attempt to port showone.bat to REXX */
  3. /* font1 is the font that the user wishes to see displayed */
  4.  
  5. call rxfuncadd 'sysloadfuncs','rexxutil','sysloadfuncs'
  6. call sysloadfuncs
  7.  
  8. echo off
  9. call syscls
  10.  
  11. SHOWONE:
  12. arg font1
  13.  
  14. figlet "-f" font1 "< test.txt"
  15. say "This is" font1
  16. pause
  17. return