10 lines
205 B
Plaintext
10 lines
205 B
Plaintext
|
#!/bin/bash
|
||
|
##makedesc: Uninstall google chrome
|
||
|
source "$( dirname $(readlink -e -- "${BASH_SOURCE}"))/../helpers.sh" || exit 255
|
||
|
|
||
|
title
|
||
|
|
||
|
dpkg_remove google-chrome-stable
|
||
|
|
||
|
success "Google Chrome removed!"
|