summarylogtreecommitdiffstats
path: root/checkVersion.bash
diff options
context:
space:
mode:
Diffstat (limited to 'checkVersion.bash')
-rwxr-xr-xcheckVersion.bash8
1 files changed, 8 insertions, 0 deletions
diff --git a/checkVersion.bash b/checkVersion.bash
new file mode 100755
index 000000000000..2c32e7f1d000
--- /dev/null
+++ b/checkVersion.bash
@@ -0,0 +1,8 @@
+#!/bin/bash
+# This is a not very elaborate script to check the version of Discover in the
+# official repositories and the AUR version. It assumes discover-snap is
+# installed on the system.
+ARCHVERSION=`curl -s https://archlinux.org/packages/extra/x86_64/discover/ | grep -oP '(?<=<meta itemprop="softwareVersion" content=\").*?(?=\"/>)'`
+AURVERSION=`LC_ALL=C pacman -Qi discover-snap | grep -oP '(?<=Version : )([0-9,\.\-])*'`
+echo "Arch (discover) version is ${ARCHVERSION}."
+echo "AUR (discover-snap) version is ${AURVERSION}."