#!/bin/bash

# diffz-all
# Find differences between build scripts and build options files.
# mozes@slackware.com

find . -type d -mindepth 1 -maxdepth 1 \! \( -name EXCLUDE -o -name arm -o -name orig \) -prune -print | while read line ; do
  echo "********* $line ********"
  ( cd $line 
    if [ -x differ ]; then
       ./differ 
     else
       echo "No differ script found!"
    fi ) ; done
