From 4c420571b41abd67e25711803f60a0e689cd9830 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Thu, 27 Aug 2015 21:00:15 -0700 Subject: [PATCH] google-code-moved: don't be so verbose --- tools/google-code-moved.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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