Skip to content

Instantly share code, notes, and snippets.

@RaminMT
Created September 3, 2022 08:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RaminMT/c1c2cb19a7ad73f5d0202177e2fa2049 to your computer and use it in GitHub Desktop.
Save RaminMT/c1c2cb19a7ad73f5d0202177e2fa2049 to your computer and use it in GitHub Desktop.
Get latest release from Github releases & extract a file
curl -s https://api.github.com/repos/peak/s5cmd/releases/latest \
| jq -r '.assets[].browser_download_url' \
| grep '.*Linux-64.*' \
| wget -qi - -O- \
| tar xvzf - s5cmd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment