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