Skip to content

Instantly share code, notes, and snippets.

@Schm1tz1
Last active May 11, 2023 06:38
Show Gist options
  • Save Schm1tz1/5ffa1c458b2ccb93d0bd87625a4ab41a to your computer and use it in GitHub Desktop.
Save Schm1tz1/5ffa1c458b2ccb93d0bd87625a4ab41a to your computer and use it in GitHub Desktop.
Download latest version of JulieOps
#!/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