Skip to content

Instantly share code, notes, and snippets.

@mecaneer23
Created February 3, 2025 20:57
Show Gist options
  • Select an option

  • Save mecaneer23/47f1428ae918a50ab454a6d68027da19 to your computer and use it in GitHub Desktop.

Select an option

Save mecaneer23/47f1428ae918a50ab454a6d68027da19 to your computer and use it in GitHub Desktop.
Simple script to install chrome on Debian based Linux distributions - based off this resource (https://vegastack.com/tutorials/how-to-install-google-chrome-web-browser-on-debian/)
#!/usr/bin/bash
install-chrome() {
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb;
sudo apt install ./google-chrome-stable_current_amd64.deb;
rm ./google-chrome-stable_current_amd64.deb;
}
install-chrome
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment