forked from sh-edraft.de/sh_linux_installation_scripts
7 lines
181 B
Bash
7 lines
181 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
install_discord() {
|
||
|
echo 'Installing Discord'
|
||
|
wget -O discord.deb "https://discordapp.com/api/download?platform=linux&format=deb"
|
||
|
sudo dpkg -i discord.deb
|
||
|
}
|