Answers for "Delete all linux package"

0

Delete all linux package

grep "YYYY-MM-DD.*.install " /var/log/dpkg.log | awk '{ print $4 }' | cut -d: -f1 | xargs sudo apt-get --yes purge
Posted by: Guest on June-29-2021

Browse Popular Code Answers by Language