1 2 3 4 5 6
#!/bin/bash find $1 \( -name "*$2" -o -name ".*$2" \) -print | while read f; do diff -u $f ${f%%$2} done