You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/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
|