Commit 0b4e9534 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

add find-missing helper script

parent d0eda99e
Loading
Loading
Loading
Loading

share/find-missing

0 → 100755
+13 −0
Original line number Diff line number Diff line
#!/bin/zsh

: > missing.txt

./xml2json | fgrep missing | shuf | while read m eva x ; do
	if [[ $x != *,* ]] && db-iris -x $eva &> /dev/null; then
		echo "\n$m $eva $x"
		echo $m $eva $x >> missing.txt
	else
		echo -n .
	fi
	sleep .2
done