6 lines
174 B
Bash
Executable File
6 lines
174 B
Bash
Executable File
#!/bin/sh
|
|
|
|
curl -s "https://github.com/wez/wezterm/tags" \
|
|
| awk '/a href=.\/wez\/wezterm\/releases\/tag/ { print }' \
|
|
| sed 's/.*a href=".*">//; s/<\/a>.*//;' | head -n 1
|