home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / slackbui
Encoding:
Text File  |  1995-03-23  |  259 b   |  15 lines

  1. #!/bin/sh
  2.  
  3. echo
  4. echo "+=================================+"
  5. echo "| Building development series (D) |"
  6. echo "+=================================+"
  7. echo
  8. echo
  9.  
  10. for subdir in * ; do
  11.   if [ -r $subdir/SlackBuild ]; then
  12.     ( cd $subdir ; SlackBuild $* )
  13.   fi
  14. done
  15.