6 lines
150 B
Bash
Executable File
6 lines
150 B
Bash
Executable File
#!/bin/sh
|
|
|
|
lynx -dump "https://github.com/skyjake/lagrange/releases" \
|
|
| awk '/^v[0-9]+/ {$0=gensub(/^v([^\s]*).*/,"\\1",1); print;}' \
|
|
| head -n 1
|