Created
April 1, 2022 16:48
-
-
Save tatarysh/f23aa4cbe85d2be711cdacf04da20d53 to your computer and use it in GitHub Desktop.
binance desktop app updater
This file contains hidden or 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
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