Skip to content

Instantly share code, notes, and snippets.

@tatarysh
Created April 1, 2022 16:48
Show Gist options
  • Save tatarysh/f23aa4cbe85d2be711cdacf04da20d53 to your computer and use it in GitHub Desktop.
Save tatarysh/f23aa4cbe85d2be711cdacf04da20d53 to your computer and use it in GitHub Desktop.
binance desktop app updater
TEMP_DEB="$(mktemp)" &&
wget -O "$TEMP_DEB" 'https://ftp.binance.com/electron-desktop/linux/production/binance-amd64-linux.deb' &&
sudo dpkg -i "$TEMP_DEB"
rm -f "$TEMP_DEB"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment