<?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: Arpit Jindal</title>
    <description>The latest articles on DEV Community by Arpit Jindal (@arpitjindal01).</description>
    <link>https://dev.to/arpitjindal01</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%2F3743822%2Fa4f4f028-128a-401e-9d2f-0440ba220ea1.png</url>
      <title>DEV Community: Arpit Jindal</title>
      <link>https://dev.to/arpitjindal01</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/arpitjindal01"/>
    <language>en</language>
    <item>
      <title>Using GitHub Copilot CLI as a Beginner to Translate English into Shell Commands</title>
      <dc:creator>Arpit Jindal</dc:creator>
      <pubDate>Sat, 31 Jan 2026 14:22:22 +0000</pubDate>
      <link>https://dev.to/arpitjindal01/using-github-copilot-cli-as-a-beginner-to-translate-english-into-shell-commands-3h4e</link>
      <guid>https://dev.to/arpitjindal01/using-github-copilot-cli-as-a-beginner-to-translate-english-into-shell-commands-3h4e</guid>
      <description>&lt;p&gt;GitHub Repo - (&lt;a href="https://github.com/Arpit-Jindal-01/copilot-cli-beginner-workflow" rel="noopener noreferrer"&gt;https://github.com/Arpit-Jindal-01/copilot-cli-beginner-workflow&lt;/a&gt;)&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I built this
&lt;/h2&gt;

&lt;p&gt;I am still learning my way around the command line. Many times I know &lt;em&gt;what&lt;/em&gt; I want to do, but not &lt;em&gt;how&lt;/em&gt; to express it as a shell command.&lt;/p&gt;

&lt;p&gt;This challenge gave me a chance to explore GitHub Copilot CLI as a bridge between natural language and terminal commands.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I built
&lt;/h2&gt;

&lt;p&gt;&lt;a href="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%2Farticles%2Fpcwwvzg9k56z1qciuwss.png" class="article-body-image-wrapper"&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%2Farticles%2Fpcwwvzg9k56z1qciuwss.png" alt=" " width="800" height="277"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="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%2Farticles%2Fz3htd7iergbr65tv66g0.png" class="article-body-image-wrapper"&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%2Farticles%2Fz3htd7iergbr65tv66g0.png" alt=" " width="800" height="169"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I created a small helper workflow where I:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Describe a task in plain English&lt;/li&gt;
&lt;li&gt;Ask GitHub Copilot CLI to suggest a command&lt;/li&gt;
&lt;li&gt;Use Copilot again to explain how the command works&lt;/li&gt;
&lt;/ul&gt;

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

&lt;p&gt;&lt;strong&gt;Task&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;count number of folders&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Copilot Suggestion&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;&lt;code&gt;bash find . -maxdepth 1 -type d | wc -l&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What I Learned&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="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%2Farticles%2F35vpkq6apfn3y3bswe8i.png" class="article-body-image-wrapper"&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%2Farticles%2F35vpkq6apfn3y3bswe8i.png" alt=" " width="800" height="293"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Copilot CLI is best used interactively, with a human in the loop&lt;/p&gt;

&lt;p&gt;It is very helpful for beginners who understand goals but not syntax&lt;/p&gt;

&lt;p&gt;Understanding CLI limitations is as important as using AI tools&lt;/p&gt;

&lt;p&gt;This experience helped me become more confident with terminal commands instead of blindly copy-pasting them.&lt;/p&gt;

&lt;p&gt;This post is my submission for the GitHub Copilot CLI Challenge.&lt;/p&gt;

</description>
      <category>githubcopilot</category>
      <category>cli</category>
      <category>devchallenge</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
