Skip to content

Instantly share code, notes, and snippets.

@brahimmachkouri
Last active February 14, 2022 13:32
Show Gist options
  • Save brahimmachkouri/a352bd0f40b2199e67404e44b62e7f35 to your computer and use it in GitHub Desktop.
Save brahimmachkouri/a352bd0f40b2199e67404e44b62e7f35 to your computer and use it in GitHub Desktop.
Get the lastest version number of FogProject (or any Github Project)
#!/bin/bash
githubproject="https://github.com/FOGProject/fogproject/releases/latest/"
url=$(curl -Ls -o /dev/null -w %{url_effective} $githubproject)
version=${url##*/}
echo $version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment