Bash3lper/scripts/bashelper_apt-check-install...

22 lines
293 B
Bash
Raw Normal View History

2023-03-29 20:10:53 +02:00
#!/usr/bin/env bash
source header
check_package (){
write_header
write_header " C H E C K - P A C K A G E "
echo -e "\n Check all package installed on your machine.\n\n"
echo -e "${GRIS}\n"
dpkg-query -f '${binary:Package}\n' -W
echo -e "\n ${NOC}"
pause
}
check_package