mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-23 21:14:37 +00:00
10 lines
357 B
Bash
10 lines
357 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
removePacks=( '^llvm-.*' 'php.*' '^mongodb-.*' '^mysql-.*' '^dotnet-sdk-.*' 'azure-cli' 'google-cloud-cli' 'google-chrome-stable' 'firefox' 'powershell*' 'microsoft-edge-stable' 'mono-devel' )
|
||
|
for pack in "${removePacks[@]}"; do
|
||
|
echo "REMOVING ${pack}"
|
||
|
sudo apt-get purge -y $pack || true
|
||
|
done
|
||
|
sudo apt-get autoremove -y
|
||
|
sudo apt-get clean
|