blob: 781b794f607d01c0972f45650968c8240e7f83ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
#
# Main
#
arg=$1
if [ "x${arg}x" = "xx" ]; then
echo "Usage: ./status_indiviual XX"
echo " with XX as a languagecode"
exit
fi
for i in $1/*.ts; do echo $i - `grep translation "$i" | grep type=\"unfinished\" | wc -l` ; done
|