Last active
March 25, 2022 22:02
-
-
Save ragazzid/9c9cb87e5b21396502cbf761a93583e9 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
# Simple script to update discord :) | |
# Download | |
wget https://discord.com/api/download\?platform\=linux\&format\=deb -O /tmp/discord.deb | |
# Install | |
sudo dpkg -i /tmp/discord.deb | |
# Update | |
sudo apt update | |
# Make sure all dependencies installed | |
sudo apt install -f -y | |
# Clean UP | |
rm -rf /tmp/discord.deb | |
# curl -L https://gist.githubusercontent.com/ragazzid/9c9cb87e5b21396502cbf761a93583e9/raw/bd6b412abb437288e7cab5fbaddc157639434924/update_discord_ubuntu.sh | bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment