Last active
July 10, 2021 16:24
-
-
Save acfatah/d46216ce327500363f742bb0df82f525 to your computer and use it in GitHub Desktop.
Bash command to install Brave browser on linux
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
#!/usr/bin/env bash | |
# https://brave.com/linux/#debian-9-ubuntu-1604-and-mint-18 | |
sudo apt install -y apt-transport-https curl && | |
sudo curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg && | |
echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main"|sudo tee /etc/apt/sources.list.d/brave-browser-release.list && | |
sudo apt update && sudo apt install -y brave-browser |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment