google-code-moved: don't be so verbose

This commit is contained in:
Daniel Martí 2015-08-27 21:00:15 -07:00
parent 98f21d31b5
commit 4c420571b4
1 changed files with 2 additions and 1 deletions

View File

@ -11,10 +11,11 @@ len=$(echo "$all" | wc -l)
echo "$len apps left"
echo "$all" | sort -u | shuf | while read url; do
echo $url
printf "."
found=$(curl -s $url/checkout | sed -n 's/.*<A HREF="\(.*\)">here<\/A>.*/\1/p')
if [ -n "$found" ]; then
printf "\n%s\n" $url
printf "\tProject moved: %s\n" $found
fi
done