handle dot files

CVS patchset: 570
CVS date: 1996/05/10 16:24:05
This commit is contained in:
root 1996-05-10 16:24:05 +00:00
parent a97ae7625c
commit 40ee60b49c
1 changed files with 1 additions and 1 deletions

View File

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