7 lines
194 B
Bash
Executable file
7 lines
194 B
Bash
Executable file
#!/bin/bash
|
|
curl -s https://api.github.com/repos/mattermost/desktop/releases/latest \
|
|
| grep "browser_download_url.*tar.gz" \
|
|
| cut -d : -f 2,3 \
|
|
| tr -d \" \
|
|
| tr -d " " \
|
|
| grep x64
|