[test/shaping] Add hb-read-manifest

This commit is contained in:
Behdad Esfahbod 2012-01-19 20:28:15 -05:00
parent a211cd3ffc
commit e900869b0f
1 changed files with 36 additions and 0 deletions

36
test/shaping/hb-read-manifest Executable file
View File

@ -0,0 +1,36 @@
#!/bin/bash
if test $# = 0; then
echo "Usage: $0 DIR..."
exit 1
fi
strict=true
recurse () {
if ! test -e "$1"; then
if $strict; then
echo "$0: $1 does not exist" 1>&2
exit 1
fi
fi
if test -d "$1"; then
if test -f "$1/MANIFEST"; then
cat "$1/MANIFEST" | while read f; do
recurse "$1/$f"
done
else
if $strict; then
echo "$0: $1/MANIFEST does not exist" 1>&2
exit 1
fi
fi
else
echo "$1"
fi
}
for root in "$@"; do
root=${root%/}
recurse "$root";
done