datta/scripts/get_slack_version.sh

7 lines
213 B
Bash
Raw Permalink Normal View History

2023-11-12 16:14:09 +00:00
#!/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