home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Amiga / Workbench / Archivers / GGUUcode.readme < prev    next >
Text File  |  1998-03-31  |  1KB  |  37 lines

  1. Short:    UUen/decode for 68k and PPC, with source.
  2. Author:   Gabriele Greco
  3. Uploader: ggreco@iol.it
  4. Type:     util/arc
  5.  
  6. This is a simple program to uuencode/decode, available for PPC  and 68k.
  7. It's public domain and distributed with source.
  8.  
  9. It's not particulary optimized, it's only a simple program I've made
  10. to begin to work with Sas/C PPC. (Thanks to Steve Krueger for this
  11. great compiler!)
  12.  
  13. The PuP version It's 3 times quicker than the 68000 version on a 68060. 
  14. I suggest to use it in conjunction with ElfLoadSeg to avoid the use of
  15. runelf/runppc.
  16.  
  17. It has a standard AmigaOS interface, this is the program template:
  18.  
  19. FILE,A=ENCODE/S,X=DECODE/S,TO=DEST/K
  20.  
  21. Support also stdin for decoding and stdout for the encoding (useful with pipe)
  22.  
  23. Some examples:
  24.  
  25. gguucode pippo
  26. decodes the asci file "pippo" to the current directory (default operation is
  27. decoding).
  28.  
  29. gguucode A dh1:file.lha
  30. Encode the ascii file dh1:file.lha to the standard output
  31.  
  32. gguucode X pippo TO t:
  33. Decode the ASCII file "pippo" to the directory t:
  34.  
  35. gguucode pippo TO ram:file
  36. Decode the file "pippo" to the file ram:file (the uuencoded file name is overridden).
  37.