You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
233 B
Plaintext
12 lines
233 B
Plaintext
4 years ago
|
#!/bin/bash
|
||
|
|
||
|
function error {
|
||
|
echo -e "\\e[91m$1\\e[39m"
|
||
|
exit
|
||
|
}
|
||
|
|
||
|
cd ~/.local/share
|
||
|
|
||
|
sudo ~/.local/share/processing*/uninstall.sh || error "failed to uninstall"
|
||
|
rm -rf processing* || error "Failed to remove install directory!"
|
||
|
cd ~/
|