From c2e2823b237d1fb9d639e419f7e618f9d1562fe8 Mon Sep 17 00:00:00 2001 From: neoFelhz Date: Sun, 29 Oct 2017 13:25:55 +0800 Subject: [PATCH] feat: bring up check,sh --- checker.sh | 103 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 checker.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