6 lines
165 B
Bash
Executable File
6 lines
165 B
Bash
Executable File
#!/bin/sh
|
|
|
|
curl -s -L "https://download.gnome.org/sources/epiphany/" \
|
|
| awk '/<a href.*[[:digit:]]\/</ {$0=gensub(/.*>(.+)\/<.*/,"\\1",1); print;}' \
|
|
| tail -n 1
|