#!/bin/sh echo echo "+==========================+" echo "| Building base series (A) |" echo "+==========================+" echo echo for subdir in * ; do if [ -d $subdir ]; then ( cd $subdir ; SlackBuild $* ) fi done