home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / disks / tools / afsrollover / makeintorollover next >
Text File  |  1996-07-06  |  358b  |  18 lines

  1. /* Turn a normal file into an AFS Rollover file */
  2.  
  3. if arg()=0 then do
  4.    say 'USAGE: MakeIntoRollover FILENAME/A SIZEINBLOCKS/N/A'
  5.    exit 10
  6.    end
  7.  
  8. parse arg fname size
  9.  
  10. address command
  11.  
  12. 'Copy 'fname' t:MakeIntoRollover.temp'
  13. 'Delete >NIL: 'fname
  14. 'MakeRollover 'fname' 'size
  15. 'Type >'fname' t:MakeIntoRollover.temp'
  16. 'Delete >NIL: t:MakeIntoRollover.temp'
  17.  
  18.