Add check-version.sh script

This commit is contained in:
2025-09-22 16:49:02 +03:00
parent 946df28d4d
commit c0de74adbe
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
URL="https://downloads.nwtime.org/ntp/ChangeLog-stable"
# Get version number from tag name
VERSION=$(curl -s -L "$URL" | grep -o -E '\(.*\)' | head -n1)
# Trim parenthesis characters
VERSION=$(echo "$VERSION" | tr -d '()')
echo "$VERSION"