<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>packages Archives - ITEC4B</title>
	<atom:link href="https://itec4b.com/tag/packages/feed/" rel="self" type="application/rss+xml" />
	<link>https://itec4b.com/tag/packages/</link>
	<description>Information Technology Expert Consulting</description>
	<lastBuildDate>Wed, 01 Feb 2023 18:11:27 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.1</generator>
	<item>
		<title>Debian: List/Check Installed Packages</title>
		<link>https://itec4b.com/debian-list-check-installed-packages/</link>
		
		<dc:creator><![CDATA[author]]></dc:creator>
		<pubDate>Wed, 01 Feb 2023 16:43:02 +0000</pubDate>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Shell Scripting]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[packages]]></category>
		<category><![CDATA[shell script]]></category>
		<guid isPermaLink="false">https://itec4b.com/?p=916</guid>

					<description><![CDATA[List All Installed Packages Look For Specific Package(s)]]></description>
										<content:encoded><![CDATA[
<h3>List All Installed Packages</h3>



<pre class="wp-block-code"><code>$ LC_ALL=C dpkg-query -f '${Package} ${Version} ${Status}\n' -W | awk '{print $1" "$2" "$4" "$5}' | column -t</code></pre>



<h3>Look For Specific Package(s)</h3>



<pre class="wp-block-code"><code>Multiple package names and glob patterns works

$ LC_ALL=C dpkg-query -f '${Package} ${Version} ${Status}\n' -W &lt;pkg_name&gt; | awk '{print $1" "$2" "$4" "$5}' | column -t</code></pre>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
