blob: cf63fa88b0ff653642bc38e2e49d37f9329a5f8e (
plain) (
blame)
1
2
3
4
5
6
|
#!/bin/bash
export DIR="../../client-data"
find -H $DIR -type f -name "*.png" -exec ./checkfile.sh $DIR/LICENSE {} \;
find -H $DIR/sfx -type f -name "*.ogg" -exec ./checkfile.sh $DIR/LICENSE {} \;
|