Skip to content

Instantly share code, notes, and snippets.

View smallest-quark's full-sized avatar

smallest-quark

View GitHub Profile
@smallest-quark
smallest-quark / gist:7def29ad659c40039de69cd9c7e28a54
Created September 2, 2024 21:14
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 {}`