Files
ntp/check-version.sh
T
2025-09-22 16:49:02 +03:00

12 lines
255 B
Bash

#!/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"