forked from sh-edraft.de/sh_linux_installation_scripts
10 lines
298 B
Bash
10 lines
298 B
Bash
#!/bin/bash
|
|
|
|
install_chrome() {
|
|
echo 'Installing chrome:'
|
|
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
|
|
sudo dpkg -i ./google-chrome-stable_current_amd64.deb
|
|
rm google-chrome-stable_current_amd64.deb
|
|
sudo apt-get install chrome-gnome-shell -y
|
|
}
|