Last active
May 11, 2023 06:38
-
-
Save Schm1tz1/5ffa1c458b2ccb93d0bd87625a4ab41a to your computer and use it in GitHub Desktop.
Download latest version of JulieOps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
echo "Downloading latest release of Julie Ops..." | |
curl -s https://api.github.com/repos/kafka-ops/julie/releases/latest \ | |
| grep -e "browser_download_url.*FAT.jar.zip" \ | |
| cut -d ":" -f2,3 | tr -d \" \ | |
| wget -q --show-progress -O julie-ops.jar -i - |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment