home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d8xx / d811 / bsh.lha / bsh / uue < prev    next >
Text File  |  1993-02-14  |  423b  |  15 lines

  1. if #argv<2
  2.     echo >&2 usage: uue file [file]...
  3.     echo >&2 result placed in file.uu
  4. else
  5.     local i
  6.     foreach i ( $* )
  7.     echo encoding $i to $i.uu
  8.     uuencode >$i.uu <$i $i
  9.     end
  10. endif
  11. # Uue is presented as is; no warrantee is either expressed or implied
  12. # as to it's suitability to any purpose whatsoever.  You assume all the
  13. # risk for all damage, even if caused by a defect in the software,
  14. # no matter how awful.
  15.