check-licence.sh 166 B

1234567891011121314
  1. d=$1
  2. if [ -z $d ]
  3. then
  4. d=.
  5. fi
  6. for file in `find $d -iregex '.*\.\(ogg\|wav\)'`
  7. do
  8. licence=`svn propget licence "$file"`
  9. echo "$file" - "$licence"
  10. done