Script pour installer Brave Browser sur Debian Linux

#!/bin/bash
# Installs Brave Browser
# Just copy this into any text editor, save as "example.sh"
# cd to directory with the "example.sh" in it, and "bash ./example.sh"
sudo apt install apt-transport-https curl gnupg &&
curl -s https://brave-browser-apt-release.s3.brave.com/brave-core.asc | sudo apt-key --keyring /etc/apt/trusted.gpg.d/brave-browser-release.gpg add - &&
echo "deb [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 brave-browser
Successful Starling