12 lines
255 B
Bash
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"
|