Files
libvterm/check-version.sh
2025-12-30 19:38:22 +02:00

9 lines
272 B
Bash

#!/bin/bash
URL="https://www.leonerd.org.uk/code/libvterm/"
# Get version number from tag name
VERSION=$(curl -s -L "$URL" | grep -o -E 'libvterm-[0-9]{1,}\.[0-9]{1,}(\.[0-9]{1,})?\.tar\.gz' | grep -o -E '[0-9]{1,}\.[0-9]{1,}(\.[0-9]{1,})?' | head -n1)
echo "$VERSION"