home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Fax / AVMN199D.LHA / avminstall / rexx / savefax.avm < prev    next >
Encoding:
Text File  |  1995-05-29  |  253 b   |  11 lines

  1. /* converts fax files into something else */
  2.  
  3. parse arg fileName firstPage lastPage .
  4.  
  5. j = 1
  6.  
  7. do i = firstPage to lastPage
  8.   address command 'avm:gnu/fax2iff -o ram:fax.' || right(j, 3, '0') || '.iff' fileName || '.' || right(i, 3, '0')
  9.   j = j + 1
  10. end
  11.