home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / emulate / systems / pc370 / bat / t < prev   
Text File  |  1991-01-18  |  91b  |  9 lines

  1. for i in ../*zip
  2. {
  3.     unzip $i
  4.     new=`basename $i .zip`
  5.     zoo a $new *
  6.     mv $new.zoo ..
  7.     rm *
  8. }
  9.