#!/bin/sh

FILES=$( find $1 -name "$2" 2>/dev/null | sort )

for FILE in $FILES; do
    . $FILE;
done
