Created
September 2, 2024 21:14
-
-
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)
This file contains 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
`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