diff --git a/tools/google-code-moved.sh b/tools/google-code-moved.sh index a5529575f7..59f1ebd233 100755 --- a/tools/google-code-moved.sh +++ b/tools/google-code-moved.sh @@ -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/.*here<\/A>.*/\1/p') if [ -n "$found" ]; then + printf "\n%s\n" $url printf "\tProject moved: %s\n" $found fi done