Vasyl Vavrychuk wrote:
> I would like to list not installed packages in my script.
could this help you (if I understood right, that you want to know, if some
of the packages (in this case) gawk, git, cmake are not installed:
dpkg -l gawk git cmake | awk /^un/'{print $2}'
cmake
git
Bernd