commit c2e2823b237d1fb9d639e419f7e618f9d1562fe8 Author: neoFelhz Date: Sun Oct 29 13:25:55 2017 +0800 feat: bring up check,sh diff --git a/checker.sh b/checker.sh new file mode 100644 index 0000000..c63d44b --- /dev/null +++ b/checker.sh @@ -0,0 +1,103 @@ +echo 'Checking Chrome Stable x86 ......' + +curl "https://tools.google.com/service/update2" --data " + + + + + + + " > ./public/stable-x86.xml + +echo 'Checking Chrome Stable x64 ......' + +curl "https://tools.google.com/service/update2" --data " + + + + + + + " > ./public/stable-x64.xml + +echo 'Checking Chrome Beta x86 ......' + +curl "https://tools.google.com/service/update2" --data " + + + + + + + " > ./public/beta-x86.xml + +echo 'Checking Chrome Beta x64 ......' + +curl "https://tools.google.com/service/update2" --data " + + + + + + + " > ./public/beta-x64.xml + +echo 'Checking Chrome Dev x86 ......' + +curl "https://tools.google.com/service/update2" --data " + + + + + + + " > ./public/dev-x86.xml + +echo 'Checking Chrome Dev x64 ......' + +curl "https://tools.google.com/service/update2" --data " + + + + + + + " > ./public/dev-64.xml + +echo 'Checking Chrome Canary x86 ......' + +curl "https://tools.google.com/service/update2" --data " + + + + + + + " > ./public/canary-x86.xml + +echo 'Checking Chrome Canary x64 ......' + +curl "https://tools.google.com/service/update2" --data " + + + + + + + " > ./public/canary-x64.xml \ No newline at end of file