Skip to content

Instantly share code, notes, and snippets.

@smallest-quark
Created September 2, 2024 21:14
Show Gist options
  • Save smallest-quark/7def29ad659c40039de69cd9c7e28a54 to your computer and use it in GitHub Desktop.
Save smallest-quark/7def29ad659c40039de69cd9c7e28a54 to your computer and use it in GitHub Desktop.
one liner only using only wget and downloading the first (newest file from the releases)
`wget -qO- --max-redirect=10 https://github.com/rustdesk/rustdesk/releases | grep -wo "https.*x86_64.deb\|https.*amd64.deb" | head -n 1 | xargs -I {} wget -O test.deb {}`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment