home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume6 / doarch.pl / arch_all next >
Text File  |  1989-04-23  |  274b  |  20 lines

  1. #!/bin/sh
  2.  
  3. loc=/usr/spool/oldnews/comp/sources
  4.  
  5. for this in unix misc games x
  6. do
  7.     cd $loc/:$this || exit 1
  8.     rm -fr *
  9.     for arch in news oldnews
  10.     do
  11.         for i in /usr/spool/$arch/comp/sources/$this/*
  12.         do
  13.             if [ -f $i ]
  14.             then
  15.                 $HOME/arch/doarch $i
  16.             fi
  17.         done
  18.     done
  19. done
  20.