home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 13 / AACD13.ISO / AACD / Utilities / arc2arc / arc2arc.doc next >
Text File  |  2000-08-16  |  3KB  |  93 lines

  1.  
  2.     Arc2Arc 2.5 - by Rolf Max Rotvel
  3.  
  4.  
  5.     DESCRIPTION    
  6.     Arc2Arc is an unarchive format converter.
  7.  
  8.     Unlike the typical lha -> lzx converters you can configure this one to
  9.     convert to and from any archive format you like.
  10.     Examples: gz -> zip, zip -> lzx, tgz -> lha and of course lzx -> lha :-)
  11.  
  12.     Arc2Arc also copies any filenote from the original archive to the new. And
  13.     doesn't mess in any way with the original files.
  14.  
  15.  
  16.     INSTALLATION
  17.     Copy the script to rexx:
  18.  
  19.  
  20.     CONFIGURATION
  21.     Load the script into your text editor and have a look at the configuration
  22.     section.
  23.  
  24.     The first word of the dearchiver description strings is the archive
  25.     suffix. Arc2Arc uses this to figure out which dearchiver to launch. You
  26.     don't have to worry about case, but you must include all the dots (Eg:
  27.     .LHA, .TAR.GZ, etc).
  28.  
  29.     It's important that you think a bit about the order of the list. If you
  30.     list .GZ before .TAR.GZ, .tar.gz archives will be recognized as straight
  31.     .gz archives. So childpatterns must be listed before parentpatterns.
  32.  
  33.     The rest of the dearchiver string is the actual command including options.
  34.     If the dearchiver requires redirection (Like GZip) you must include the
  35.     '>' sign at the end of the dearchiver string.
  36.  
  37.  
  38.     The first word of the archiver strings is the archive type. This must be
  39.     the same as the suffix created by the archiver, but without any dots (Eg:
  40.     LHA, LZX). Case isn't important
  41.     The rest of the archiver string is the actual command including options.
  42.  
  43.  
  44.     Tmpdir is the directory where Arc2Arc creates it's work directory. Keep
  45.     this in t: if you have enough ram.
  46.  
  47.  
  48.     USAGE
  49.     rx rexx:arc2arc.rexx <arctype> filename
  50.  
  51.     <arctype>
  52.     is the name of the archive format you want to convert to. This should
  53.     match one of the archivers you have configured (But again, case doesn't
  54.     matter).
  55.     If you don't specify this Arc2Arc will use the default archiver (arc.1).
  56.  
  57.     filename
  58.     is the name of the archive you want to convert.
  59.  
  60.     Examples:
  61.     rx arc2arc ZIP dl:test.lha
  62.     This should create the file dl:test.zip
  63.  
  64.     rx arc2arc dl:test.zip
  65.     Assuming that LZX is your default archiver this should create the file
  66.     dl:test.lzx
  67.  
  68.     The original files are not deleted.
  69.  
  70.  
  71.     NOTES
  72.     Arc2Arc doesn't delete it's work directory, just the contents of it. This
  73.     is because some archivers doesn't release their lock on this directory
  74.     properly
  75.  
  76.  
  77.     COPYRIGHT
  78.     No copyright. Do whatever you want with this.    
  79.  
  80.  
  81.     DISCLAIMER
  82.     It's all your fault :-) 
  83.  
  84.  
  85.     AUTHOR
  86.     Please send send any comments you might have to me: 
  87.     rolfrotvel@bigfoot.com
  88.  
  89.  
  90.     HISTORY:
  91.     2.5 - First release.
  92.  
  93.