Created
February 3, 2025 20:57
-
-
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/)
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/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