4 # File ID: c3a7f1d4-5d3f-11df-8759-90e6ba3022ac
7 if [ "$1" = "-c" ]; then
8 # Check the Files.md5 files instead of creating them
9 for f
in `find -type d -depth`; do
10 echo "=== Directory $f"
11 cd $f && { md5sum -c Files.md5
; cd - ; }
15 for f
in `find -type d -depth`; do
17 cd $f && { mkFiles
; cd - ; }
21 # vim: set ts=4 sw=4 :