Add check-version.sh script
This commit is contained in:
@@ -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"
|
||||||
Reference in New Issue
Block a user