Add script to detect projects that moved from google code to github

This commit is contained in:
Daniel Martí 2015-08-17 22:15:20 -07:00
parent e1c946dee9
commit 62c28b1eb0
1 changed files with 15 additions and 0 deletions

15
tools/google-code-moved.sh Executable file
View File

@ -0,0 +1,15 @@
#!/bin/sh
# This fetches all google code source pages and reports those that have moved
# to github.
set -e
sed -n 's@Source Code:\(.*code\.google\.com.*/source\)@\1@p' metadata/*.txt | sort -u | while read url; do
echo $url
found=$(curl -s $url/checkout | sed -n 's/.*<A HREF="\(.*\)">here<\/A>.*/\1/p')
if [ -n "$found" ]; then
printf "\tProject moved: %s\n" $found
fi
done