9 lines
272 B
Bash
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"
|