Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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
Comment

delete list of packages linux

grep "2015-12-19.*.install " /var/log/dpkg.log | 
awk '{ print $4 }' | cut -d: -f1 | xargs sudo apt remove -y
Comment

PREVIOUS NEXT
Code Example
Shell :: removing portion of history from terminal mac 
Shell :: Trying to register Bundler::GemfileError for status code 4 but Bundler::GemfileError is already registered 
Shell :: install sublime text editor ubuntu terminal 
Shell :: how to set gopath/bin linux 
Shell :: creating docker based vms with ranchervm but requires KVM installed 
Shell :: uninstall flake 8 in vs 
Shell :: branch conflicts 
Shell :: npm install and add to dependancies 
Shell :: use mock api 
Shell :: configure: error: --with-openssl was given but OpenSSL could not be detected 
Shell :: install beego ubuntu 
Shell :: check file path linux 
Shell :: bash execute command in variable 
Shell :: YCM core library not detected 
Shell :: install redis on ubuntu 20.04 
Shell :: grep get everything between two strings 
Shell :: create github repo with bash 
Shell :: windows command to grant permission to a directory 
Shell :: how to check maximum ram memory capacity support size in linux 
Shell :: yum list installed packages from specific repo 
Shell :: docker copy file not found 
Shell :: change user permission linux 
Shell :: heroku cli 
Shell :: difference between rebase and merge in git 
Shell :: Git lab global setup 
Shell :: kubernetes get node taints 
Shell :: long path windows 
Shell :: setoolkit kali linux install 
Shell :: remove all local changes git 
Shell :: kubectl connect to node bash 
ADD CONTENT
Topic
Content
Source link
Name
2+8 =