<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: torchiachristian</title>
    <description>The latest articles on DEV Community by torchiachristian (@torchiachristian).</description>
    <link>https://dev.to/torchiachristian</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3657990%2F882e2686-bf40-4a5b-8e6a-8adafb67f5e5.png</url>
      <title>DEV Community: torchiachristian</title>
      <link>https://dev.to/torchiachristian</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/torchiachristian"/>
    <language>en</language>
    <item>
      <title>[Boost]</title>
      <dc:creator>torchiachristian</dc:creator>
      <pubDate>Fri, 12 Dec 2025 00:28:14 +0000</pubDate>
      <link>https://dev.to/torchiachristian/-26fj</link>
      <guid>https://dev.to/torchiachristian/-26fj</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/torchiachristian" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3657990%2F882e2686-bf40-4a5b-8e6a-8adafb67f5e5.png" alt="torchiachristian"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/torchiachristian/building-a-searchable-powershell-cmdlet-reference-with-csv-23ac" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;Building a Searchable PowerShell Cmdlet Reference with CSV&lt;/h2&gt;
      &lt;h3&gt;torchiachristian ・ Dec 12&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
    </item>
    <item>
      <title>Building a Searchable PowerShell Cmdlet Reference with CSV</title>
      <dc:creator>torchiachristian</dc:creator>
      <pubDate>Fri, 12 Dec 2025 00:26:40 +0000</pubDate>
      <link>https://dev.to/torchiachristian/building-a-searchable-powershell-cmdlet-reference-with-csv-23ac</link>
      <guid>https://dev.to/torchiachristian/building-a-searchable-powershell-cmdlet-reference-with-csv-23ac</guid>
      <description>&lt;p&gt;I needed a structured, filterable list of PowerShell cmdlets for a documentation tool. Instead of scraping each time, I built a maintained CSV dataset.&lt;br&gt;
&lt;strong&gt;A starter sample (sample.csv with 20 entries) is available in this GitHub repository:&lt;br&gt;
[&lt;a href="https://github.com/torchiachristian/powershell-cmdlet-dataset" rel="noopener noreferrer"&gt;https://github.com/torchiachristian/powershell-cmdlet-dataset&lt;/a&gt;]&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The CSV includes these columns:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;code&gt;Command&lt;/code&gt;: The cmdlet name.&lt;/li&gt;
&lt;li&gt;  &lt;code&gt;Module&lt;/code&gt;: Its source module.&lt;/li&gt;
&lt;li&gt;  &lt;code&gt;Category&lt;/code&gt;: A usage category (e.g., Process, File).&lt;/li&gt;
&lt;li&gt;  &lt;code&gt;Description&lt;/code&gt;: A brief summary.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Example usage:&lt;/strong&gt;&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
powershell
# Find all process-related cmdlets
$ref = Import-Csv -Path "./ps_cmdlet_ref.csv"
$ref | Where-Object { $_.Category -eq 'Process' } | Format-Table Command, Module

# List all modules in the dataset
$ref | Select-Object Module -Unique



&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>automation</category>
      <category>cli</category>
      <category>tooling</category>
    </item>
  </channel>
</rss>
