home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / file / extar_1 / extar / readme < prev    next >
Encoding:
Text File  |  1996-05-21  |  1.5 KB  |  51 lines

  1. ReadMe for extar.c, Copyright 1996 Alun Jones, auj@aber.ac.uk
  2.  
  3. You may copy, modify, hack apart and distribute extar.c freely. I take no
  4. responsibility for any loss or damage caused by its use or misuse.
  5.  
  6. extar.c: a tar extractor for Unix which knows about RISC OS filenames.
  7.  
  8. You can control its handling of filenames by setting two environment
  9. variables:
  10.  
  11. ARCSWAP
  12.     This contains a colon separated list of directory names which should be
  13.     swapped for files. That sentence probably doesn't make much sense, so
  14.     here's an example:
  15.  
  16.     If ARCSWAP = "c:s:tmp" then
  17.  
  18.     RISC OS           Unix
  19.     =======           ====
  20.     wibble.c.fred  -> wibble/fred.c
  21.     tmp.wibble     -> wibble.tmp
  22.     s.fred         -> fred.s
  23.  
  24.     The default value (you can change it in the sources) is
  25.  
  26.     ARCSWAP="a:c:f:h:i:l:o:p:s:y:w:vim:info"
  27.  
  28. ARCDOT
  29.     This contains a colon separated list of filenames which should be
  30.     combined with their directory name to make a dot-extension. This is used
  31.     mainly by *TeX. Again, an example makes it clearer (I hope):
  32.  
  33.     If ARCDOT = "tex:dvi:eps" then
  34.  
  35.     RISC OS            Unix
  36.     =======            ====
  37.     wibble.fred.tex -> wibble/fred.tex
  38.     fred.dvi        -> fred.dvi
  39.     wibble.fred.eps -> wibble/fred.eps
  40.  
  41.     The default value (again specified in the sources) is
  42.  
  43.     ARCDOT="txt:tex:dvi:eps:ps:bib:sty:bst:log:blg:aux:bbl:lof:lot:toc"
  44.  
  45. Nothing in the sources requires anything more complex than an ANSI C
  46. compiler, plus the "mkdir" system call. So it should compile on any Unix.
  47. I also use it regularly on Windows NT.
  48.  
  49. If you have any questions or bug fixes, please let me know.
  50.  
  51.