datta/scripts/get_slack_version.sh
2023-11-12 16:14:28 +00:00

6 lines
213 B
Bash
Executable file

#!/bin/bash
curl -s https://slack.com/release-notes/linux \
| grep -E '<h2 class="u-flex u-align--center">Slack ' \
| sed -e 's/.*<h2 class="u-flex u-align--center">Slack //g' -e 's#</h2>.*##g' \
| head -1